﻿.pricing-section {
    background-color: #EBE5D9;
    padding: 60px 0 80px 0;
    color: #333;
    font-family: 'Noto Sans TC', 'Microsoft JhengHei', sans-serif;
}

.pricing-header-container {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.pricing-badge {
    background-color: #9A7B6D;
    color: white;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    margin-right: 20px;
    letter-spacing: 2px;
    white-space: nowrap;
}

.pricing-title {
    color: #5C4033;
    margin: 0;
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
}

.pricing-title-main {
    font-size: 2.8rem;
    font-weight: 900;
    margin-right: 15px;
    letter-spacing: 2px;
}

.pricing-title-sub {
    font-size: 2.2rem;
    font-family: 'Times New Roman', serif;
    letter-spacing: 1px;
    font-weight: bold;
}

.pricing-table-wrapper {
    width: 100%;
    overflow-x: auto;
    margin-bottom: 60px;
    -webkit-overflow-scrolling: touch; /* 讓 iOS 滑動更順暢 */
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.pricing-table {
    width: 100%;
    min-width: 900px; /* 電腦版維持寬度 */
    border-collapse: collapse;
    border: 4px solid #5C4033;
    background-color: transparent;
    text-align: center;
}

    .pricing-table th, .pricing-table td {
        border: 1px solid #5C4033;
        padding: 20px 10px;
        vertical-align: middle;
        font-size: 1.1rem;
        font-weight: 600;
        color: #000;
    }

    .pricing-table th {
        font-weight: bold;
    }

    .pricing-table .notes-row td {
        text-align: left;
        font-size: 0.95rem;
        font-weight: 600;
        padding: 15px 20px;
        line-height: 1.6;
        border-top: 1px solid #5C4033;
    }

.holiday-list {
    font-size: 0.9rem !important;
    line-height: 1.4;
    font-weight: 600;
    text-align: center;
    padding: 10px !important;
}

/* 手機版 RWD 樣式調整 */
@media (max-width: 768px) {
    .pricing-section {
        padding: 40px 0;
    }

    .pricing-header-container {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 15px;
    }

    .pricing-badge {
        margin-bottom: 10px;
        font-size: 1rem;
        padding: 6px 18px;
    }

    .pricing-title-main {
        font-size: 2rem;
    }

    .pricing-title-sub {
        font-size: 1.6rem;
    }

    .pricing-table {
        min-width: 700px; /* 手機版稍微縮小最小寬度，減少滑動距離 */
    }

        .pricing-table th, .pricing-table td {
            padding: 12px 8px; /* 縮小儲存格內距 */
            font-size: 0.95rem; /* 縮小字體 */
        }

        .pricing-table .notes-row td {
            font-size: 0.85rem;
            padding: 12px;
        }

    .mobile-scroll-hint {
        display: block !important;
    }
}

.mobile-scroll-hint {
    display: none;
    color: #5C4033;
    font-size: 0.85rem;
    text-align: right;
    margin-bottom: 8px;
    font-weight: bold;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.6;
    }
}
