/* ============================================================
   Lucy's 桌面版產品頁面優化 CSS
   Version: 1.6
   ============================================================
   
   修正記錄：
   v1.0 - 初始版本
   v1.1 - 修正尺碼選單文字被截斷的問題
   v1.2 - 強化修正：擴大選單容器寬度
   v1.6 - 整合有效的尺碼選單代碼（來自v1.5），保留所有功能
   
   ============================================================ */

/* ============================================================
   🔧🔧🔧 關鍵修正：尺碼選單容器和SELECT元素（來自v1.5有效代碼）
   ============================================================ */

/* 強制所有產品頁面的 select 全寬 */
.page-product select,
.page-product select.form-control,
.page-product .form-control[class*="select"],
.page-product .variant-selected select,
.page-product .js-variant-container select,
.page-product .js-selectable-variant {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
    overflow: visible !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
}

/* 修正選單的父容器 - 讓它佔用更多空間 */
.page-product .variant-selected .row > .col-lg-6:first-child,
.page-product .variant-selected .row > .col-md-6:first-child,
.page-product .variant-selected .row > .col-md-8,
.page-product .variant-selected .row > .col-lg-8 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    width: 100% !important;
}

/* Size Guide 連結移到獨立行 */
.page-product .variant-selected .row > .col-lg-6:last-child,
.page-product .variant-selected .row > .col-md-6:last-child,
.page-product .variant-selected .row > .col-lg-6.pt-2,
.page-product .variant-selected .row > .col-md-6.pt-2 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    width: 100% !important;
    padding-top: 8px !important;
}

/* 針對 Single Product 的選單容器 */
.page-product .pt-3.col-md-8,
.page-product .col-md-8:has(select) {
    flex: 0 0 100% !important;
    max-width: 100% !important;
}

.page-product .pt-2.col-md-4,
.page-product .col-md-4:has(.size-guide) {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    padding-top: 8px !important;
}

/* Additional Items 選單容器修正 */
.page-product .js-variant-container .row > .col-lg-6:first-child,
.page-product .js-variant-container .row > .col-md-6:first-child {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    width: 100% !important;
}

.page-product .js-variant-container .row > .col-lg-6:last-child,
.page-product .js-variant-container .row > .col-md-6:last-child {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    width: 100% !important;
    padding-top: 8px !important;
}

/* ============================================================
   全局產品頁面優化
   ============================================================ */

.page-product {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* ============================================================
   產品標題區域
   ============================================================ */

.page-product .product-title {
    font-size: 28px;
    font-weight: 700;
    color: #222;
    line-height: 1.3;
    margin-bottom: 20px;
}

/* ============================================================
   This Product Includes 圖示區
   ============================================================ */

.page-product h2.h5 {
    font-size: 16px;
    color: #666;
    margin-bottom: 12px;
    font-weight: 600;
}

.page-product .pb-2 .d-inline-block {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-product .pb-2 .d-inline-block:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* ============================================================
   動作按鈕區（In-Store Fitting, Watchlist, Size Consultation）
   ============================================================ */

.page-product .btn-outline-default,
.page-product .btn-outline-success,
.page-product .btn-outline-info {
    border-radius: 25px;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-right: 8px;
    margin-bottom: 10px;
}

.page-product .btn-outline-default:hover,
.page-product .btn-outline-success:hover,
.page-product .btn-outline-info:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* ============================================================
   價格顯示區
   ============================================================ */

.page-product #display-price {
    font-size: 26px;
    color: #8B4513;
    margin: 20px 0;
    padding: 15px 20px;
    background: linear-gradient(135deg, #fff9f5 0%, #fff 100%);
    border-radius: 10px;
    border-left: 5px solid #8B4513;
    box-shadow: 0 2px 8px rgba(139, 69, 19, 0.1);
}

.page-product #display-price strong {
    font-weight: 800;
    letter-spacing: -0.5px;
}

.page-product #display-price s {
    color: #999;
    font-size: 18px;
    margin-left: 10px;
}

/* ============================================================
   尺碼選擇區（Bundle Products）
   ============================================================ */

.page-product .variant-selected {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 20px !important;
    margin-bottom: 15px !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.page-product .variant-selected:hover {
    border-color: #8B4513;
    box-shadow: 0 4px 16px rgba(139, 69, 19, 0.1);
}

.page-product .variant-selected label.font-weight-bold,
.page-product .variant-selected .font-weight-bold {
    font-size: 15px;
    color: #333;
    font-weight: 700;
    margin-bottom: 12px;
}

/* 🔧 下拉選單樣式（整合v1.5有效代碼） */
.page-product .variant-selected select.form-control,
.page-product .variant-selected select {
    border: 2px solid #ddd !important;
    border-radius: 8px !important;
    padding: 12px 40px 12px 15px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #333 !important;
    background-color: #fff !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%238B4513' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 12px center !important;
    background-size: 18px !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    cursor: pointer !important;
    transition: border-color 0.3s ease, box-shadow 0.3s ease !important;
    height: auto !important;
    min-height: 48px !important;
    line-height: 1.4 !important;
}

.page-product .variant-selected select.form-control:hover {
    border-color: #8B4513 !important;
}

.page-product .variant-selected select.form-control:focus,
.page-product .variant-selected select:focus {
    border-color: #8B4513 !important;
    box-shadow: 0 0 0 4px rgba(139, 69, 19, 0.12) !important;
    outline: none !important;
}

/* Size Guide 連結 */
.page-product .size-guide {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.page-product .size-guide:hover {
    color: #6B3510 !important;
}

/* ============================================================
   Additional Items 區塊（頁面內）
   ============================================================ */

.page-product .js-variant-container {
    background: linear-gradient(135deg, #fafafa 0%, #fff 100%);
    border: 2px dashed #ddd;
    border-radius: 12px;
    padding: 20px !important;
    margin-bottom: 15px !important;
    position: relative;
    transition: all 0.3s ease;
}

.page-product .js-variant-container:hover {
    border-color: #bbb;
}

.page-product .js-variant-container.variant-selected,
.page-product .js-variant-container:has(.js-selected > *) {
    border: 2px solid #8B4513;
    border-style: solid;
    background: #fff;
    box-shadow: 0 4px 16px rgba(139, 69, 19, 0.1);
}

.page-product .js-variant-container small {
    display: inline-block;
    background: linear-gradient(135deg, #8B4513 0%, #6B3510 100%);
    color: #fff;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.page-product .js-variant-container .btn-just-icon {
    background: #8B4513;
    color: #fff;
    border-color: #8B4513;
    width: 32px;
    height: 32px;
    line-height: 32px;
    padding: 0;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.page-product .js-variant-container .btn-just-icon:hover {
    background: #6B3510;
    transform: scale(1.1);
}

/* ============================================================
   Additional Items 彈出框 - 網格佈局優化
   參考目標：3列緊湊網格，大圖片，完整尺碼選擇器
   ============================================================ */

/* 彈出框容器 - 強制 flex 佈局 */
.modal .modal-body > .row,
.modal .modal-body .row {
    display: flex !important;
    flex-wrap: wrap !important;
    margin: 0 -10px !important;
    justify-content: flex-start !important;
}

/* 產品卡片列 - 桌面版3列 */
.modal .modal-body > .row > [class*="col-"],
.modal .modal-body .row > [class*="col-"],
.modal .modal-body .col-md-4,
.modal .modal-body .col-6 {
    flex: 0 0 33.333% !important;
    max-width: 33.333% !important;
    padding: 10px !important;
    box-sizing: border-box !important;
}

/* 產品卡片容器 */
.modal .card-product,
.modal .card.card-product {
    background: #fff !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 8px !important;
    padding: 0 !important;
    margin: 0 !important;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    overflow: hidden !important;
    transition: all 0.3s ease !important;
}

.modal .card-product:hover {
    border-color: #8B4513 !important;
    box-shadow: 0 4px 12px rgba(139, 69, 19, 0.15) !important;
}

/* 產品圖片區域 */
.modal .card-product .card-image {
    padding: 15px 15px 10px 15px !important;
    text-align: center !important;
}

.modal .card-product .card-back-image,
.modal .card-product .card-image > a > div,
.modal .card-product .card-image img {
    width: 100% !important;
    height: 150px !important;
    background-size: contain !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-color: #f9f9f9 !important;
    border-radius: 6px !important;
}

/* 產品內容區域 */
.modal .card-product .card-body {
    padding: 0 15px 15px 15px !important;
    display: flex !important;
    flex-direction: column !important;
    flex-grow: 1 !important;
    text-align: center !important;
}

/* 產品標題 - 完整顯示，多行 */
.modal .card-product .card-title,
.modal .card-product .card-description h2,
.modal .card-product .card-description .h6,
.modal .card-product h6,
.modal .card-product .h6 {
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #333 !important;
    line-height: 1.4 !important;
    margin-bottom: 8px !important;
    min-height: 54px !important;
    overflow: hidden !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 3 !important;
    -webkit-box-orient: vertical !important;
    text-align: center !important;
}

/* 產品價格 */
.modal .card-product .price {
    margin-bottom: 12px !important;
    text-align: center !important;
}

.modal .card-product .price p,
.modal .card-product .price .h5 {
    font-size: 14px !important;
    margin-bottom: 0 !important;
}

.modal .card-product .price .text-danger,
.modal .card-product .price strong {
    color: #dc3545 !important;
    font-weight: 700 !important;
    font-size: 15px !important;
}

.modal .card-product .price s,
.modal .card-product .price .text-gray {
    color: #999 !important;
    font-size: 12px !important;
    margin-left: 5px !important;
}

/* 🔧 關鍵：尺碼選擇器 - 全寬顯示 */
.modal .card-product select,
.modal .card-product select.form-control,
.modal .card-product .form-control {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    padding: 10px 35px 10px 12px !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    color: #333 !important;
    border: 1px solid #ddd !important;
    border-radius: 6px !important;
    margin-bottom: 8px !important;
    background-color: #fff !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 10px center !important;
    background-size: 14px !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    cursor: pointer !important;
    min-height: 40px !important;
    box-sizing: border-box !important;
}

.modal .card-product select:focus {
    border-color: #8B4513 !important;
    box-shadow: 0 0 0 2px rgba(139, 69, 19, 0.1) !important;
    outline: none !important;
}

/* Size Guide 連結 */
.modal .card-product .size-guide,
.modal .card-product a[data-toggle="modal"],
.modal .card-product .text-muted {
    font-size: 12px !important;
    color: #8B4513 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 4px !important;
    margin-bottom: 12px !important;
    text-decoration: none !important;
}

.modal .card-product .size-guide:hover,
.modal .card-product a[data-toggle="modal"]:hover {
    color: #6B3510 !important;
    text-decoration: underline !important;
}

.modal .card-product .size-guide i,
.modal .card-product .text-muted i {
    font-size: 12px !important;
}

/* ADD TO CART 按鈕 */
.modal .card-product .btn-danger,
.modal .card-product .btn-sm.btn-danger,
.modal .card-product button.btn-danger {
    width: auto !important;
    min-width: 120px !important;
    padding: 8px 20px !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    border-radius: 4px !important;
    background: #dc3545 !important;
    border-color: #dc3545 !important;
    color: #fff !important;
    transition: all 0.3s ease !important;
    margin: 0 auto !important;
    display: inline-block !important;
}

.modal .card-product .btn-danger:hover {
    background: #c82333 !important;
    border-color: #c82333 !important;
    box-shadow: 0 2px 8px rgba(220, 53, 69, 0.3) !important;
}

/* 缺貨狀態 */
.modal .card-product .text-danger.mb-0 {
    font-size: 13px !important;
    font-weight: 600 !important;
    text-align: center !important;
}

/* 彈出框整體樣式 */
.modal .modal-dialog {
    max-width: 900px !important;
}

.modal .modal-content {
    border-radius: 10px !important;
    overflow: hidden !important;
    border: none !important;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2) !important;
}

.modal .modal-body {
    padding: 20px !important;
    max-height: 75vh !important;
    overflow-y: auto !important;
    background: #fff !important;
}

/* 滾動條樣式 */
.modal .modal-body::-webkit-scrollbar {
    width: 8px;
}

.modal .modal-body::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.modal .modal-body::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

.modal .modal-body::-webkit-scrollbar-thumb:hover {
    background: #8B4513;
}

/* 響應式調整 - 平板版2列 */
@media (max-width: 991px) and (min-width: 768px) {
    .modal .modal-body > .row > [class*="col-"],
    .modal .modal-body .row > [class*="col-"],
    .modal .modal-body .col-md-4,
    .modal .modal-body .col-6 {
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }
}

/* 🔧 Additional Item 下拉選單（整合v1.5有效代碼） */
.page-product .js-variant-container select.form-control,
.page-product .js-variant-container select {
    border: 2px solid #ddd !important;
    border-radius: 8px !important;
    padding: 12px 40px 12px 15px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #333 !important;
    background-color: #fff !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%238B4513' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 12px center !important;
    background-size: 18px !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    cursor: pointer !important;
    height: auto !important;
    min-height: 48px !important;
    line-height: 1.4 !important;
}

.page-product .js-variant-container select.form-control:focus,
.page-product .js-variant-container select:focus {
    border-color: #8B4513 !important;
    box-shadow: 0 0 0 4px rgba(139, 69, 19, 0.12) !important;
    outline: none !important;
}

/* ============================================================
   數量和加入購物車
   ============================================================ */

.page-product .js-quantity {
    border: 2px solid #ddd;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.page-product .js-quantity:hover {
    border-color: #bbb;
}

.page-product .js-quantity:focus {
    border-color: #8B4513;
    box-shadow: 0 0 0 4px rgba(139, 69, 19, 0.12);
    outline: none;
}

/* 加入購物車按鈕 */
.page-product .js-add-cart {
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.35);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.page-product .js-add-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.45);
}

.page-product .js-add-cart:active {
    transform: translateY(0);
}

/* ============================================================
   產品描述區 - 桌面版完整顯示
   ============================================================ */

.page-product .product-description-wrapper {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.page-product .product-description-content {
    font-size: 15px;
    line-height: 1.8;
    color: #444;
    max-height: none !important;
    overflow: visible !important;
}

.page-product .product-description-content p {
    margin-bottom: 15px;
}

.page-product .product-description-content ul,
.page-product .product-description-content ol {
    padding-left: 25px;
    margin: 15px 0;
}

.page-product .product-description-content li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.page-product .product-description-content strong {
    color: #222;
    font-weight: 700;
}

/* 桌面版隱藏 Read More 按鈕和漸變遮罩 */
.page-product .product-description-fade {
    display: none !important;
}

.page-product .btn-read-more {
    display: none !important;
}

/* ============================================================
   Reasons To Shop With Us 區塊
   ============================================================ */

.page-product .card-body-row {
    margin-top: 40px;
    padding: 30px 0;
    background: #fafafa;
    border-radius: 15px;
}

.page-product .card-body-row .info {
    text-align: center;
    padding: 25px 20px;
}

.page-product .card-body-row .icon {
    margin-bottom: 15px;
}

.page-product .card-body-row .icon i {
    font-size: 36px;
}

.page-product .card-body-row .info-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
}

.page-product .card-body-row .description {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

/* ============================================================
   Worldwide Shipping Section
   ============================================================ */

.page-product .blog-shipping-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
    margin-top: 40px;
}

.page-product .shipping-title {
    font-size: 32px;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
}

.page-product .shipping-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

.page-product .shipping-intro {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    max-width: 900px;
    margin: 0 auto 40px;
}

.page-product .shipping-feature {
    background: #fff;
    border-radius: 15px;
    padding: 30px 25px;
    margin-bottom: 25px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.page-product .shipping-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.page-product .shipping-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8B4513 0%, #6B3510 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.page-product .shipping-icon i {
    font-size: 24px;
    color: #fff;
}

.page-product .shipping-feature h3 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.page-product .shipping-feature p {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
}

/* NZ & International Shipping Information */
.page-product .shipping-details {
    background: #fff;
    border-radius: 15px;
    padding: 35px;
    margin-top: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.page-product .shipping-details h3 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
    text-align: center;
}

.page-product .shipping-list {
    padding-left: 0;
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
}

.page-product .shipping-list li {
    padding: 15px 0 15px 35px;
    position: relative;
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    border-bottom: 1px solid #eee;
}

.page-product .shipping-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 15px;
    width: 24px;
    height: 24px;
    background: #28a745;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.page-product .shipping-list li:last-child {
    border-bottom: none;
}

.page-product .shipping-list li strong {
    color: #333;
}

/* Shop Now CTA */
.page-product .shipping-cta {
    margin-top: 40px;
    padding-top: 30px;
}

.page-product .shipping-cta-text {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.page-product .btn-shop-now {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #8B4513 0%, #6B3510 100%);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

.page-product .btn-shop-now:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.4);
    color: #fff;
    text-decoration: none;
}

/* ============================================================
   HR 分隔線優化
   ============================================================ */

.page-product hr {
    border: none;
    height: 1px;
    background: linear-gradient(to right, transparent, #ddd, transparent);
    margin: 25px 0;
}

/* ============================================================
   圖片輪播區優化
   ============================================================ */

.page-product .page-carousel {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.page-product .carousel-control-prev,
.page-product .carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.page-product .carousel-control-prev {
    left: 15px;
}

.page-product .carousel-control-next {
    right: 15px;
}

.page-product .carousel-control-prev:hover,
.page-product .carousel-control-next:hover {
    opacity: 1;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.page-product .carousel-control-prev span,
.page-product .carousel-control-next span {
    color: #333;
    font-size: 20px;
}

/* 輪播指示器 */
.page-product .carousel-indicators li {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(139, 69, 19, 0.3);
    border: none;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.page-product .carousel-indicators li.active {
    background: #8B4513;
    transform: scale(1.2);
}

/* ============================================================
   麵包屑導航
   ============================================================ */

.page-product .title-row {
    padding-bottom: 25px;
}

.page-product .title-row strong {
    font-size: 14px;
    color: #666;
}

.page-product .title-row strong a {
    color: #8B4513;
    font-weight: 600;
    transition: color 0.2s ease;
}

.page-product .title-row strong a:hover {
    color: #6B3510;
}
