    /* ========== Layout (Flex 2-Column) ========== */
    body {
        background: rgba(245, 246, 248, 0.7);
    }

    .wrap {
        max-width: 960px;
        margin: 0 auto;
        padding: 40px;
        color: #222;
        background: #fff;
    }

    .page-title {
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 24px;
    }

    .resv-form {
        display: block;
        border-top: 2px solid #111;
    }

    .form-row {
        display: flex;
        gap: 24px;
        align-items: flex-start;
        padding: 14px 0;
        border-top: 1px solid #eef1f4;
    }

    .form-row:first-child {
        border-top: 0
    }

    .form-col.label {
        width: 180px;
        flex: 0 0 180px;
        padding-top: 12px;
        font-weight: 600;
    }

    .form-col.field {
        flex: 1 1 auto
    }

    .help-msg {
        margin-top: 8px;
        font-size: 12px;
        line-height: 1.5;
        color: #c22;
    }

    .muted {
        color: #7a8699
    }

    .inline {
        display: flex;
        gap: 10px;
        align-items: center;
        flex-wrap: wrap
    }

    .w-160 {
        width: 160px !important;
    }

    .w-120 {
        width: 120px !important;
    }

    .w-260 {
        width: 260px !important;
    }

    .w-300 {
        width: 300px !important;
    }

    .w-100p {
        width: 100% !important;
    }

    /* ========== Inputs ========== */
    .ipt {
        width: 100%;
        height: 50px;
        padding: 0 12px;
        border: 1px solid #c5ccd4;
        border-radius: 8px;
        font-size: 14px;
        background: #fff;
        color: #333;
    }

    .ipt::placeholder {
        color: #9aa4b2
    }

    textarea.ipt {
        height: 120px;
        padding: 12px;
        resize: vertical
    }

    /* ========== Custom Select (공통) ========== */
    .custom-select {
        position: relative;
        width: 120px;
    }

    .custom-select .select-trigger {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        height: 50px;
        padding: 0 12px;
        border: 1px solid #c5ccd4;
        border-radius: 8px;
        background: #fff;
        font-size: 14px;
        color: #333;
        cursor: pointer;
    }

    .custom-select .select-trigger .arrow {
        transition: transform .25s ease;
    }

    .custom-select.active .select-trigger .arrow {
        transform: rotate(180deg);
    }

    .custom-select .select-options {
        display: none;
        position: absolute;
        top: calc(100% + 4px);
        left: 0;
        width: 100%;
        max-height: 200px;
        overflow-y: auto;
        border: 1px solid #c5ccd4;
        border-radius: 8px;
        background: #fff;
        z-index: 20;
        box-shadow: 0 8px 24px rgba(2, 18, 46, .08);
    }

    .custom-select.active .select-options {
        display: block;
    }

    .custom-select .select-options li {
        padding: 10px 12px;
        cursor: pointer;
        font-size: 14px;
    }

    .custom-select .select-options li:hover {
        background: #f1f3f5;
    }

    .custom-select .select-options li[aria-selected="true"] {
        background: #eef6ff
    }

    /* ========== Buttons ========== */
    .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        height: 48px;
        width: 220px;
        text-align: center;
        border-radius: 10px;
        border: 1px solid transparent;
        cursor: pointer;
        font-weight: 600;
        font-size: 14px;
    }

    .btn-primary {
        background: #111827;
        color: #fff;
    }

    .btn-outline {
        background: #fff;
        color: #111827;
        border-color: #c5ccd4;
    }

    .btn:disabled {
        opacity: .6;
        cursor: not-allowed
    }

    /* ========== Calendar Modal ========== */
    .calendar-modal {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, .5);
        z-index: 1000;
        display: none;
        justify-content: center;
        align-items: center;
    }

    .calendar-modal.show {
        display: flex;
    }

    .calendar-modal__box {
        background: #fff;
        width: 380px;
        max-width: 90%;
        border-radius: 12px;
        overflow: hidden;
    }

    .calendar-modal__header {
        padding: 20px;
        font-size: 18px;
        font-weight: 700;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .calendar-modal__header h3 {
        font-weight: 400;
    }

    .calendar-modal__close {
        background: none;
        border: 0;
        font-size: 22px;
        cursor: pointer;
    }

    .calendar-modal__body {
        padding: 12px 20px;
    }

    .calendar-modal__footer {
        padding: 16px;
        background: #f1f1f1;
        text-align: center;
    }

    .calendar-modal__confirm {
        background: #111827;
        border: 0;
        padding: 12px 40px;
        border-radius: 8px;
        color: #fff;
        cursor: pointer;
    }

    .cus-cal {
        background: #fff;
        border-radius: 4px;
        max-width: 100%;
        border: 1px solid rgba(238, 238, 238, .8);
    }

    .cus-cal-header {
        display: flex;
        align-items: center;
        padding: 12px;
    }

    .cus-cal-header-label {
        flex: 1;
        text-align: center;
        font-weight: 700;
    }

    .cus-cal-week {
        display: flex;
    }

    .cus-cal-week span {
        width: 14.28%;
        padding: 8px;
        font-size: 13px;
        text-align: center;
        font-weight: 600;
    }

    .cus-cal-week span:first-child {
        color: red;
    }

    .cus-cal-body {
        display: flex;
        flex-wrap: wrap;
        background: #fff;
        height: 240px;
    }

    .cus-cal-date {
        width: 14.28%;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .cus-cal-date span {
        font-size: 15px;
        font-weight: 400;
    }

    .cus-cal-date--active {
        cursor: pointer;
        border-radius: 50%;
    }

    .cus-cal-date--today {
        background: #e7e9ed;
        color: #7f7f7f;
    }

    .cus-cal-date--selected {
        background: #111;
        color: #fff;
    }

    .cus-cal-date--disabled {
        opacity: .4;
        cursor: not-allowed;
    }

/* screen-reader only (ps1001의 .blind 용도) */
.blind {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
}

/* 예약 확인 모달 (ps1001 동일) */
.reservation-confirm-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
}

.reservation-confirm-modal.is-open {
    display: flex;
}

.reservation-confirm-modal-dim {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.reservation-confirm-inner {
    position: relative;
    width: 100%;
    max-width: 460px;
    max-height: 90vh;
    height: auto;
    background: #fff;
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    overflow: hidden;
}

.reservation-confirm-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid #eee;
    flex-shrink: 0;
}

.reservation-confirm-body {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    padding: 20px;
}

.reservation-confirm-footer {
    flex-shrink: 0;
    padding: 16px 20px;
    border-top: 1px solid #eee;
    background: #111;
    text-align: center;
    color: #fff;
}

.reservation-confirm-modal .confirm-header {
    margin-bottom: 24px;
}

.reservation-confirm-modal .confirm-pension {
    font-size: 14px;
    color: #888;
    margin-bottom: 8px;
}

.reservation-confirm-modal .confirm-title {
    font-size: 20px;
    font-weight: 600;
    color: #262626;
    line-height: 1.4;
}

.reservation-confirm-modal .confirm-title strong {
    font-weight: 600;
}

.reservation-confirm-modal .confirm-title .confirm-status-message {
    display: block;
    margin-top: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #4a4a4a;
    line-height: 1.45;
}

.reservation-confirm-modal .confirm-info {
    border-top: 1px solid #eee;
}

.reservation-confirm-modal .confirm-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid #eee;
}

.reservation-confirm-modal .confirm-label {
    font-size: 14px;
    color: #888;
}

.reservation-confirm-modal .confirm-value {
    font-size: 15px;
    font-weight: 600;
    color: #111;
}

    /* ========== Fare Modal ========== */
    .fare-modal {
        display: none;
        position: fixed;
        inset: 0;
        justify-content: center;
        align-items: center;
        z-index: 100;
    }

    .fare-modal.show {
        display: flex;
    }

    .fare-modal__dim {
        position: fixed;
        /* ✅ 화면 전체 고정 */
        inset: 0;
        /* top:0; right:0; bottom:0; left:0 */
        background: rgba(17, 24, 39, 0.5);
        /* 반투명 딤 */
        z-index: 1000;
        /* 패널 뒤, 다른 요소 위 */
    }


    .fare-modal__panel {
        position: relative;
        background: #fff;
        width: 520px;
        max-width: 90%;
        border-radius: 14px;
        box-shadow: 0 16px 48px rgba(2, 18, 46, .18);
        padding: 20px;
        z-index: 1001;
    }

    .fare-modal__head {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 12px;
    }

    .fare-modal__title {
        font-weight: 700;
        font-size: 18px;
    }

    .fare-modal__close {
        background: none;
        border: 0;
        font-size: 22px;
        cursor: pointer;
    }

    .fare-modal__body {
        font-size: 14px;
        line-height: 1.6;
    }

    .fare-modal__footer {
        margin-top: 16px;
        text-align: right;
    }

    .fare-summary {
        margin-bottom: 10px;
        color: #334155;
    }

    .fare-list {
        list-style: none;
        padding: 0;
        margin: 0 0 12px;
    }

    .fare-list__item {
        display: flex;
        justify-content: space-between;
        padding: 6px 0;
        font-size: 14px;
        border-bottom: 1px solid #f1f5f9;
    }

    .fare-list__item:last-child {
        border-bottom: none;
    }

    .fare-list__item .label {
        color: #374151;
    }

    .fare-list__item .amount {
        font-weight: 600;
        color: #111;
    }


    .fare-notes {
padding: 12px;
        background: #f9f9f9;
        border-radius: 8px;
        color: #444;
        font-size: 13px;
    }
    .fare-total {
        margin-top: 14px;
        text-align: right;
        font-weight: 800;
        font-size: 18px;
        color: #e11d48;
    }

    @media (max-width: 768px) {
        .wrap {
            max-width: 100%;
            padding: 20px 16px;
        }

        .page-title {
            font-size: 20px;
            margin-bottom: 18px;
        }

        .resv-form {
            border-top-width: 1px;
        }

        .form-row {
            flex-direction: column;
            gap: 8px;
            padding: 16px 0;
            align-items: stretch;
        }

        .form-col.label {
            width: 100%;
            flex: 0 0 auto;
            padding-top: 0;
            font-size: 14px;
        }

        .form-col.label:empty {
            display: none;
        }

        .form-col.field {
            width: 100%;
            min-width: 0;
        }

        .help-msg {
            font-size: 13px;
        }

        .inline {
            flex-direction: column;
            align-items: stretch;
            gap: 10px;
        }

        .inline > .ipt,
        .inline > .custom-select {
            width: 100% !important;
            max-width: 100%;
        }

        .w-120,
        .w-160,
        .w-260,
        .w-300 {
            width: 100% !important;
            max-width: 100%;
        }

        .custom-select {
            width: 100% !important;
            max-width: 100%;
        }

        .ipt {
            font-size: 16px;
            min-height: 48px;
        }

        textarea.ipt {
            min-height: 100px;
        }

        .btn {
            width: 100%;
            max-width: 100%;
            height: 50px;
        }

        .calendar-modal__box {
            width: min(380px, calc(100vw - 32px));
            max-width: 100%;
        }

        .calendar-modal__header {
            padding: 16px;
            font-size: 16px;
        }

        .calendar-modal__body {
            padding: 10px 14px;
        }

        .cus-cal-body {
            height: auto;
            min-height: 220px;
        }

        .reservation-confirm-inner {
            width: calc(100vw - 24px);
            max-width: 460px;
        }

        .reservation-confirm-header,
        .reservation-confirm-body,
        .reservation-confirm-footer {
            padding: 14px 16px;
        }

        .reservation-confirm-modal .confirm-title {
            font-size: 17px;
        }

        .reservation-confirm-modal .confirm-row {
            flex-direction: column;
            align-items: flex-start;
            gap: 6px;
            padding: 12px 0;
        }

        .reservation-confirm-modal .confirm-value {
            text-align: left;
            width: 100%;
        }

        .fare-modal__panel {
            width: calc(100vw - 32px);
            max-width: 520px;
            padding: 16px;
        }

        .fare-modal__title {
            font-size: 16px;
        }

        .fare-list__item {
            flex-wrap: wrap;
            gap: 4px 8px;
        }

        .fare-total {
            font-size: 16px;
        }

        .fare-modal__footer .btn {
            width: 100%;
        }
    }
