.m-0 {
    margin: 0;
}


.text-center {
    text-align: center;
}

/* 預設隱藏 */
.only-mobile-show {
  display: none;
}
 
/* 只有在螢幕寬度小於 768px 才顯示 */
@media (max-width: 768px) {
  .only-mobile-show {
    display: block;
  }
  .indexBookQuickBookHeader{
    font-size: 18px;
    text-align: center;
    margin-bottom:30px;
  }
}
.planning-container {
    top: 260px;
    display: flex;
    width: 100%;
    margin: 0;
    padding: 0;
}

.planning-img-box {
    max-width: 100%;
}

.planning-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.planning-sidebar {
    display: none;
    margin: 0 60px;
}

.planning-sidebar-title {
    margin-top: 12px;
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
    color: #000000;
    margin-bottom: 16px;
}

.planning-sidebar-br {
    border: 1px solid #4B9594;
    width: 118px;
    margin-bottom: 16px;
}

.planning-sidebar-item {
    margin-top: 0;
    margin-bottom: 16px;
}

.planning-sidebar-link {
    text-decoration: none;
    text-wrap: nowrap;
    font-weight: 350;
    font-size: 18px;
    line-height: 100%;
    color: rgba(0, 0, 0, 30%);
    margin-left: 4px;
    transition: color 0.3s ease;
}

/* 當前頁面狀態：active 連結（較深色） */
.planning-sidebar-link.active {
    color: rgba(0, 0, 0, 70%);
    /* 深色，可依需求調整 */
    font-weight: 500;
    /* 可選：讓當前頁面更粗一點 */
    text-decoration: none;
}

/* hover 效果（可選） */
.planning-sidebar-link:hover {
    color: #247e7d;
    /* hover 時的中間色調 */
}

.planning-sidebar-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.planning-h2 {
    font-weight: 700;
    font-size: 18px;
    line-height: 140%;
    color: #0B2B3E;
    margin: 0;
    margin-bottom: 8px;
}

.planning-h3 {
    font-weight: 700;
    font-size: 24px;
    line-height: 140%;
    color: #0B2B3E;
    margin: 0;
    padding: 0 40px;
}

.planning-article-br {
    border-top: 1px solid #000000;
    margin: 48px 40px 16px;
}

.planning-article {
    padding-left: 40px;
    padding-right: 40px;
}

.planning-article-box {
    margin-bottom: 75px;
}

.planning-article-area-box {
    margin-bottom: 75px;
}

.planning-text {
    font-weight: 400;
    font-size: 16px;
    line-height: 160%;
    color: #667080;
}

.planning-list-text {
    font-weight: 400;
    font-size: 16px;
    line-height: 160%;
    color: #667080;
    margin-bottom: 16px;
}

.planning-article-h3 {
    margin-bottom: 24px;
    font-weight: 700;
    font-size: 26px;
    line-height: 140%;
    color: #0B2B3E;
    text-align: center;
}

.planning-solution-list {
    display: flex;
}

.planning-circle {
    width: 24px;
    margin-right: 12px;
    /* 與文字間距，可依需求調整 */
}

.circle-icon {
    display: inline-block;
    width: 20px;
    /* 圓圈直徑，可依需求調整 */
    height: 20px;
    border: 2px solid #1c7d8c;
    /* 圓圈顏色，依設計調整 */
    border-radius: 50%;
    /* 讓方形變圓形 */
    background-color: transparent;
    /* 若只要描邊，背景設透明 */
    vertical-align: middle;
    /* 與文字垂直對齊 */
}

.planning-h4 {
    font-weight: 700;
    font-size: 18px;
    line-height: 160%;
    color: #667080;
}

.planning-sidebar-nav {
    display: block;
    margin-top: 48px;
    /* margin-bottom: 36px; */
}

.planning-select-container {
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
    margin-bottom: 30px;
}

.sidebarDropdown {
    width: 260px;
    background: #f5f5f5;
    /* padding: 12px 24px; */
    border: none;
    background: #f7f7f7;
    color: #343a40;
    appearance: none;
    /* 移除原生樣式 */
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    outline: none;
    position: relative;
    /* 自訂箭頭 */
    background-image: url("data:image/svg+xml;utf8,<svg fill='gray' height='16' viewBox='0 0 24 24' width='16' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 18px;
    position: relative;
}

.dropdown-selected {
    background: #f7f7f7;
    padding: 10px 20px;
    border-radius: 6px;
    /* font-size: 20px;
    font-weight: 600; */
    color: #343a40;
    cursor: pointer;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.custom-dropdown {
    width: 260px;
    display: none;
    position: absolute;
}

.dropdown-arrow {
    border: 6px solid transparent;
    border-top: 6px solid #495057;
    margin-left: 8px;
    display: inline-block;
}

.custom-dropdown {
    display: none;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.10);
    z-index: 10;
    padding: 12px 0 12px 0;
}

.custom-dropdown.open {
    display: block;
    animation: fadeIn 0.15s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-title {
    font-size: 18px;
    font-weight: bold;
    color: #222;
    padding: 0 24px 4px 24px;
}

.dropdown-underline {
    height: 2px;
    width: 72px;
    background: #1dc7b6;
    margin: 0 0 8px 24px;
}

.dropdown-item {
    display: block;
    padding: 12px 24px;
    color: #222;
    text-decoration: none;
    font-size: 18px;
    border-bottom: 1px solid #eee;
    transition: background 0.15s, color 0.15s;
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item.active {
    color: #1dc7b6;
    font-weight: bold;
    /* border-left: 4px solid #1dc7b6; */
    background: #e6f7f4;
}

.dropdown-item:hover {
    background: #e6f7f4;
    color: #1dc7b6;
}


@media screen and (min-width: 576px) {
    .planning-img {
        height: 471px;
    }

    .planning-h3 {
        font-size: 40px;
        padding: 0 24px;
    }

    .planning-article-br {
        margin-top: 24px;
    }

    .planning-article-area {
        display: flex;
        justify-content: space-between;
    }

    .planning-article-area-box {
        width: 48%;
    }

    .planning-list-text {
        margin-bottom: 32px;
    }
}

@media screen and (min-width: 768px) {
    .planning-container {
        width: 100%;
        padding-right: 40px;
    }

    .planning-img-box {
        margin-left: 64px;
    }

    .planning-main {
        margin-right: 40px;
        overflow: hidden;
    }

    .planning-sidebar {
        display: block;
    }

    .planning-img {
        height: 544px;
    }

    .planning-article-br {
        margin-left: 88px;
        margin-right: 24px;
        padding-right: 32px;
    }

    .planning-article {
        padding-right: 32px;
        padding-left: 88px;
        padding-right: 24px;
    }

    .planning-list-text {
        margin-bottom: 24px;
    }

    .planning-sidebar-nav {
        display: none;
    }

    .planning-img {
        margin-top: 0;
    }


}

.scentsReadmore{
    display: flex;
    justify-content: center;
    /* align-items: center; */
    /* margin-top: 24px; */
    /* margin-bottom: 24px; */
}

@media screen and (max-width: 768px) {
    .scentsReadmore{
        display: block;
    }

}