.reservation-section .container {
    max-width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

.reservation-section {
    background: #F4F4F4;
    padding: 20px 0 20px;
    margin-right: -15px;
    margin-left: -15px;
}

.reservation-card {
    background: #F4F4F4;
    border-radius: 14px;
    margin: 0 auto;
}

@media (min-width: 1200px) {
    .reservation-card {
        padding-left: 4%;
        padding-right: 4%;
    }
}

.reservation-section .reservation-card .heading-same {
    font-family: Poppins;
    font-size: 23px;
    font-style: normal;
    font-weight: 600;
}

.reservation-field {
    margin: 10px 0 12px;
}

.reservation-select {
    width: 100%;
    border: 1px solid #d9d9d9;
    border-radius: 10px;
    background: #ffffff;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #333333;
}

    .reservation-select .reservation-text {
        flex: 1;
        text-align: left;
    }

.reservation-days,
.reservation-times {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 4px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.reservation-times {
    margin-top: 10px;
}

    .reservation-days .day,
    .reservation-times .time {
        border: 1px solid #d9d9d9;
        border-radius: 10px;
        background: #ffffff;
        padding: 8px 6px;
        text-align: center;
        font-size: 12px;
        color: #333333;
        flex: 0 0 auto;
        min-width: 64px;
    }

        .reservation-days .day.active,
        .reservation-times .time.active {
            border-color: #8ab800;
            background: #8ab800;
            color: #ffffff;
        }

        .reservation-times .time.active {
            background: #8ab800;
            color: #ffffff;
        }

        .reservation-days .day .day-num {
            display: block;
            font-weight: 600;
        }

        .reservation-days .day .day-name {
            display: block;
            font-size: 11px;
            opacity: 0.8;
        }

        .reservation-days .day.disableDay {
            background-color: #999999;
            color: #ffffff;
        }

.reservation-link {
    width: 100%;
    margin-top: 12px;
    border: 1px solid #8ab800;
    border-radius: 10px;
    background: #f6fbef;
    padding: 10px 12px;
    font-size: 13px;
    color: #2f2f2f;
}

.availability-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: none;
    z-index: 9998;
    padding: 120px 0 0 0;
}

    .availability-modal.active {
        display: flex;
    }

.availability-dialog {
    background: #ffffff;
    border-radius: 16px 16px 0 0;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
}

@media (min-width: 1200px) {
    .availability-modal {
        display: none;
        align-items: center;
        justify-content: center;
        padding: 40px 20px;
    }
    
    .availability-modal.active {
        display: flex;
    }
    
    .availability-dialog {
        border-radius: 16px;
        max-width: 600px;
        width: 100%;
        max-height: 90vh;
        overflow-y: auto;
    }
}

.availability-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #ececec;
    font-weight: 600;
    color: #2f2f2f;
    padding: 20px;
}

    .availability-header button {
        background: transparent;
        border: none;
        color: #787878;
        font-size: 30px;
        padding: 8px 12px;
        cursor: pointer;
        transition: all 0.2s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 44px;
        min-height: 44px;
    }
/*    
    .availability-header button:hover {
        color: #2f2f2f;
        background: #f5f5f5;
        border-radius: 8px;
    }
*/
    .availability-header .js-back-to-availability {
        font-size: 28px;
    }

.availability-body {
    padding: 16px 18px 20px;
}

.availability-month-label {
    font-size: 22px;
}

.calendar-weekdays,
.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    text-align: center;
}

    .calendar-weekdays span {
        font-size: 12px;
        color: #9a9a9a;
    }

    .calendar-days button {
        border: none;
        background: transparent;
        padding: 8px 0;
        border-radius: 10px;
        font-size: 14px;
        color: #2f2f2f;
    }
        .calendar-days button.is-muted {
            color: #c0c0c0;
        }

        .calendar-days button.is-intense {
            color: #000000;
        }
        .calendar-days button.is-active {
            background: #8ab800;
            color: #ffffff;
        }

.availability-section-title {
    margin: 18px 0 10px;
    font-size: 14px;
    font-weight: 600;
    color: #2f2f2f;
}

.party-size,
.time-slots {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

    .party-size button,
    .time-slots button {
        border: 1px solid #d9d9d9;
        background: #ffffff;
        border-radius: 12px;
        padding: 8px 12px;
        font-size: 14px;
        min-width: 46px;
        text-align: center;
    }

        .party-size button.is-active,
        .time-slots button.is-active {
            background: #8ab800;
            border-color: #8ab800;
            color: #ffffff;
        }

        .time-slots button.is-disable {
            background-color: #999999;
            color: #ffffff;
        }

.availability-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 18px;
}

    .availability-actions button {
        border-radius: 12px;
        padding: 12px 10px;
        font-size: 14px;
    }

    .availability-actions .btn-ghost {
        border: 1px solid #d9d9d9;
        background: #f6f6f6;
        color: #2f2f2f;
    }

    .availability-actions .btn-primary {
        border: 1px solid #8ab800;
        background: #ffffff;
        color: #8ab800;
        font-weight: 600;
    }

@media (max-width: 576px) {
    .reservation-days .day,
    .reservation-times .time {
        min-width: 60px;
    }
}
.reservation-preview {
    padding: 20px 15px 30px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .reservation-preview {
        padding: 30px 20px 40px;
    }
}

@media (min-width: 1200px) {
    .reservation-preview {
        padding: 40px 4% 50px;
    }
}

.preview-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .preview-header {
        margin-bottom: 24px;
    }
}

    .preview-header .back-btn {
        width: 38px;
        height: 38px;
        border-radius: 12px;
        border: 1px solid #e5e5e5;
        background: #fff;
        color: #4a4a4a;
    }

    .preview-header h1 {
        font-size: 20px;
        margin: 0;
        font-weight: 600;
        color: #2f2f2f;
    }

@media (min-width: 768px) {
    .preview-header h1 {
        font-size: 24px;
    }
}

.section-title {
    font-size: 22px;
    font-weight: 600;
    color: #2f2f2f;
}

.detail-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .detail-card {
        padding: 20px;
        border-radius: 18px;
        margin-bottom: 20px;
    }
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

    .detail-row:last-child {
        border-bottom: none;
    }

    .detail-row h4 {
        font-size: 13px;
        color: #8a8a8a;
        margin: 0 0 4px;
    }

    .detail-row p {
        margin: 0;
        color: #2f2f2f;
        font-weight: 600;
        font-size: 14px;
    }

.info-block {
    margin-top: 18px;
}

@media (min-width: 768px) {
    .info-block {
        margin-top: 24px;
    }
}

    .info-block h3 {
        font-size: 15px;
        font-weight: 600;
        margin-bottom: 8px;
    }

@media (min-width: 768px) {
    .info-block h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }
}

    .info-block p {
        font-size: 13px;
        color: #6f6f6f;
        margin-bottom: 6px;
    }

@media (min-width: 768px) {
    .info-block p {
        font-size: 14px;
        margin-bottom: 8px;
    }
}

.input-box {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 12px 14px;
    width: 100%;
    font-size: 14px;
}

@media (min-width: 768px) {
    .input-box {
        padding: 14px 16px;
        font-size: 15px;
    }
}

.phone-row {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 10px;
}

@media (min-width: 768px) {
    .phone-row {
        grid-template-columns: 80px 1fr;
        gap: 12px;
    }
}

.purpose-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

@media (min-width: 768px) {
    .purpose-group {
        gap: 10px;
    }
}

    .purpose-group button {
        border: 1px solid #d0d0d0;
        background: #ffffff;
        color: #2f2f2f;
        border-radius: 10px;
        padding: 8px 12px;
        font-size: 13px;
        transition: all 0.2s ease;
    }

@media (min-width: 768px) {
    .purpose-group button {
        padding: 10px 16px;
        font-size: 14px;
    }
}

        .purpose-group button.active {
            background: #8ab800;
            color: #ffffff;
            border-color: #8ab800;
        }

        .purpose-group button:hover {
            border-color: #8ab800;
        }

.reserve-btn {
    width: 100%;
    border-radius: 14px;
    background: #8ab800;
    border: none;
    color: #ffffff;
    font-weight: 600;
    padding: 14px 12px;
    margin-top: 18px;
    font-size: 15px;
    transition: all 0.2s ease;
}

@media (min-width: 768px) {
    .reserve-btn {
        padding: 16px 14px;
        margin-top: 24px;
        font-size: 16px;
    }
}

.reserve-btn:hover {
    background: #7ba600;
}

.my-reservation {
    padding: 20px 0 0;
}

.page-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

    .page-header .back-btn {
        width: 36px;
        border-radius: 10px;
        border: 0;
        background: #fff;
        color: #4a4a4a;
        font-size: 25px;
    }

    .page-header h1 {
        font-size: 20px;
        margin: 0;
        font-weight: 600;
        color: #2f2f2f;
    }

.reservation-tabs {
    display: flex;
    gap: 0;
    width: 100%;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 600;
    color: #9a9a9a;
    border-bottom: 1px solid #efefef;
    padding-bottom: 10px;
    margin-bottom: 16px;
}

    .reservation-tabs > div {
        flex: 1;
        text-align: center;
    }

    .reservation-tabs .active {
        color: #8ab800;
        position: relative;
    }

        .reservation-tabs .active::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -11px;
            width: 100%;
            height: 3px;
            background: #8ab800;
            border-radius: 2px;
        }

.reservation-item-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #ededed;
    padding: 12px;
    display: grid;
    grid-template-columns: 78px 1fr auto;
    gap: 12px;
    align-items: center;
    cursor: pointer;
}

.reservation-image {
    width: 78px;
    height: 78px;
    border-radius: 14px;
    background: #f2f2f2;
    overflow: hidden;
}

    .reservation-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.reservation-badge {
    display: inline-block;
    background: #8ab800;
    color: #ffffff;
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 10px;
    margin-bottom: 6px;
}

.reservation-item-card.is-hidden {
    display: none;
}

.reservation-empty-message.is-hidden {
    display: none;
}

.reservation-item-card .schedule .reservation-title {
    font-size: 13px;
    color: #8ab800;
    font-weight: 600;
    margin-bottom: 4px;
}

.reservation-item-card .visit .reservation-title {
    font-size: 13px;
    color: #8ab800;
    font-weight: 600;
    margin-bottom: 4px;
}

.reservation-item-card .cancel .reservation-title {
    font-size: 13px;
    color: #FF3B30;
    font-weight: 600;
    margin-bottom: 4px;
}
.reservation-store {
    font-size: 14px;
    font-weight: 700;
    color: #2f2f2f;
    margin-bottom: 2px;
}

.reservation-meta {
    font-size: 12px;
    color: #6f6f6f;
}

.reservation-status {
    font-size: 12px;
    background: #f3f3f3;
    color: #6f6f6f;
    padding: 4px 8px;
    border-radius: 8px;
    white-space: nowrap;
}

.reservation-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    display: none;
    align-items: flex-end;
    justify-content: center;
    z-index: 999;
}

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

.reservation-modal {
    width: 100%;
    max-width: 520px;
    background: #ffffff;
    border-radius: 22px 22px 0 0;
    padding: 18px 16px 20px;
    box-shadow: 0 -8px 20px rgba(0, 0, 0, 0.12);
}

.reservation-modal-content {
    max-height: 70vh;
    overflow-y: auto;
}

.reservation-confirm {
    background: #8ab800;
    color: #ffffff;
    border-radius: 18px;
    padding: 14px 16px;
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 12px;
    align-items: center;
    margin-bottom: 18px;
}

.reservation-confirm-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.reservation-confirm-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 2px;
}

.reservation-confirm-sub {
    font-size: 18px;
    opacity: 0.9;
}

.reservation-details h2 {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 12px;
    color: #2f2f2f;
}

.reservation-detail-card {
    border: 1px solid #ededed;
    border-radius: 16px;
    padding: 10px 12px;
    background: #ffffff;
}

.detail-my-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    color: #2f2f2f;
}

    .detail-my-row:last-child {
        border-bottom: none;
    }

.detail-label {
    font-size: 12px;
    color: #8f8f8f;
    margin-bottom: 4px;
}

.detail-value {
    font-size: 14px;
    font-weight: 600;
}

.detail-icon {
    color: #7b7b7b;
    font-size: 16px;
    margin-left: 12px;
}

.reservation-modal-close {
    margin-top: 16px;
    width: 100%;
    border-radius: 12px;
    border: 1px solid #dcdcdc;
    background: #ffffff;
    padding: 12px 0;
    font-size: 14px;
    font-weight: 600;
    color: #4a4a4a;
}
.detail-page {
    padding: 20px 0 0;
}

.detail-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

    .detail-header .left {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .detail-header .back-btn {
        width: 36px;
        border-radius: 10px;
        border: 0;
        background: #fff;
        color: #4a4a4a;
        font-size: 25px;
    }

    .detail-header .share-btn {
        width: 36px;
        border-radius: 10px;
        border: 0;
        background: #fff;
        color: #4a4a4a;
        font-size: 20px;
    }

    .detail-header h1 {
        font-size: 18px;
        margin: 0;
        font-weight: 600;
        color: #2f2f2f;
    }

.detail-header-share {
    text-align: center;
    margin-bottom: 25px;
}
    .detail-header-share h1 {
        font-size: 18px;
        margin: 0;
        font-weight: 600;
        color: #2f2f2f;
    }

.detail-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

    .detail-card img {
        width: 100%;
        height: auto;
    }

    .detail-card .icon {
        width: 24px;
        height: 24px;
    }
.detail-card-body {
    padding: 12px 14px 14px;
}

.detail-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.detail-title {
    font-size: 16px;
    font-weight: 700;
    color: #2f2f2f;
}

.detail-arrow {
    color: #b0b0b0;
    font-size: 18px;
}

.detail-schedule {
    font-size: 12px;
    font-weight: 700;
    color: #8ab800;
    margin: 4px 0 8px;
    letter-spacing: 0.4px;
}

.detail-visit {
    font-size: 12px;
    font-weight: 700;
    color: #8ab800;
    margin: 4px 0 8px;
    letter-spacing: 0.4px;
}

.detail-canceled {
    font-size: 12px;
    font-weight: 700;
    color: #d9534f;
    margin: 4px 0 8px;
    letter-spacing: 0.4px;
}

.detail-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #6f6f6f;
    margin-bottom: 4px;
}

    .detail-meta i {
        color: #8ab800;
        width: 16px;
        text-align: center;
    }

.section {
    margin-top: 18px;
}

.section-label {
    font-size: 12px;
    color: #8f8f8f;
    margin-bottom: 4px;
}

.section-value {
    font-size: 14px;
    color: #2f2f2f;
    font-weight: 600;
}

.map-preview {
    height: 140px;
    border-radius: 14px;
    background: #eaeaea;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9a9a9a;
    font-size: 12px;
}

.location-row {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.location-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #e5e5e5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7b7b7b;
    background: #fff;
    flex-shrink: 0;
}

.action-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 18px;
}

.btn-outline {
    width: 100%;
    border-radius: 12px;
    border: 1px solid #8ab800;
    background: #ffffff;
    padding: 12px 0;
    font-size: 14px;
    font-weight: 600;
    color: #8ab800;
}

.btn-disabled {
    background: #f7f7f7;
    color: #c2c2c2;
    border-color: #e5e5e5;
}

.cancel-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
    padding: 20px;
}

    .cancel-modal-backdrop.is-open {
        display: flex;
    }
.cancel-modal-header {
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 12px;
    min-height: 32px;
}

.cancel-modal-close {
    width: 32px;
    height: 32px;
    padding: 0;
    margin-right: 4px;
    border: none;
    background: transparent;
    font-size: 24px;
    line-height: 1;
    color: #6f6f6f;
    cursor: pointer;
    flex-shrink: 0;
    margin-left: auto; /* 버튼을 오른쪽 끝으로 */
    z-index: 1; /* 타이틀 위에 표시 */
}
.cancel-modal {
    width: 100%;
    max-width: 520px;
    background: #ffffff;
    border-radius: 22px;
    padding: 18px 16px 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.cancel-modal-title {
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    color: #6f6f6f;
    margin: 0;
    pointer-events: none; /* 타이틀 클릭이 버튼에 방해되지 않도록 */
}

.cancel-detail-card {
    border: 1px solid #ededed;
    border-radius: 16px;
    padding: 10px 12px;
    background: #ffffff;
}

.cancel-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    color: #2f2f2f;
}

    .cancel-row:last-child {
        border-bottom: none;
    }

.cancel-label {
    font-size: 12px;
    color: #8f8f8f;
    margin-bottom: 4px;
}

.cancel-value {
    font-size: 14px;
    font-weight: 600;
}

.cancel-icon {
    color: #7b7b7b;
    font-size: 16px;
    margin-left: 12px;
}

.cancel-action {
    margin-top: 16px;
}

.btn-cancel-primary {
    width: 100%;
    border-radius: 12px;
    border: none;
    background: #ff3b30;
    padding: 12px 0;
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
}

/* Reservation Confirmation Modal */
.reservation-confirm-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    padding: 20px;
}

.reservation-confirm-modal.active {
    display: flex;
}

.reservation-confirm-dialog {
    background: #ffffff;
    border-radius: 20px;
    width: 100%;
    max-width: 500px;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.reservation-confirm-header {
    background: #8ab800;
    color: #ffffff;
    /*border-radius: 18px;*/
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 12px;
    align-items: center;
    padding: 30px 20px 25px;
}

.reservation-confirm-header .confirm-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.reservation-confirm-body {
    padding: 24px;
}

.reservation-confirm-body h3 {
    font-size: 18px;
    font-weight: 700;
    color: #2f2f2f;
    margin: 0 0 20px;
}

.confirm-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid #f0f0f0;
}

.confirm-detail-row:last-of-type {
    border-bottom: none;
}

.confirm-detail-left {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.confirm-label {
    font-size: 13px;
    color: #8a8a8a;
    font-weight: 500;
}

.confirm-value {
    font-size: 15px;
    color: #2f2f2f;
    font-weight: 600;
    line-height: 1.4;
}

.confirm-detail-row .confirm-icon {
    color: #8ab800;
    font-size: 20px;
    margin-left: 16px;
}

.confirm-close-btn {
    width: 100%;
    background: #ffffff;
    border: 1px solid #d9d9d9;
    border-radius: 12px;
    padding: 14px;
    font-size: 15px;
    font-weight: 600;
    color: #2f2f2f;
    margin-top: 24px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.confirm-close-btn:hover {
    background: #f5f5f5;
    border-color: #8ab800;
    color: #8ab800;
}

@media (max-width: 576px) {
    .reservation-confirm-modal {
        padding: 0px;
    }
    .reservation-confirm-dialog {
        max-width: 100%;
        margin: 0px 5px 0px 5px;
    }
    
    .reservation-confirm-header {
        padding: 30px 20px 25px;
    }
    
    .reservation-confirm-header h2 {
        font-size: 22px;
    }
    
    .reservation-confirm-body {
        padding: 20px;
    }
}
@media (min-width: 1200px) {

    .reservation-body {
        padding: 0;
        padding-bottom: 90px;
    }
    .my-reservation {
        width: 1200px;
        height: calc(100vh - 50px);
        margin: 0 auto;
    }
    .my-reservation .container {
        padding-bottom: 70px;
    }
}
#footer {
    position: fixed;
    overflow: hidden;
    width:100%;
    height: 60px;
    color: #999;
    background: #323232;    
}

    #footer .copyright {
        font-size: 12px;
        text-align: center;
        line-height: 25px;
    }

        #footer .copyright span {
            color: #9c0;
        }

        #footer .copyright .use {
            display: block;
        }

    #footer a {
        color: inherit;
        text-decoration: inherit;
        cursor: pointer;
        outline: none;
    }

.reservation-empty-message {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    text-align: center;
    padding: 40px 20px;
    color: #666;
    font-size: 16px;
}
/* Cancel Success Modal - 예약 취소 완료 모달 */
.cancel-success-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10002;
    padding: 20px;
}

    .cancel-success-modal-backdrop.is-open {
        display: flex;
    }

.cancel-success-modal {
    width: 100%;
    max-width: 540px;
    background: #ffffff;
    border-radius: 24px;
    padding: 32px 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.cancel-success-content {
    text-align: center;
}

.cancel-success-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #8ab800;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 28px;
}

.cancel-success-title {
    font-size: 22px;
    font-weight: 700;
    color: #2f2f2f;
    margin: 0 0 12px;
}

.cancel-success-message {
    font-size: 14px;
    font-weight: 400;
    color: #8a8a8a;
    line-height: 1.5;
    margin: 0 0 16px;
}

.cancel-success-link {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    color: #8a8a8a;
    text-decoration: underline;
    margin-bottom: 24px;
}

.btn-cancel-success-done {
    width: 100%;
    border-radius: 12px;
    border: none;
    background: #8ab800;
    color: #ffffff;
    padding: 14px 0;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}
/* Call to Book Modal */
.call-to-book-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}

    .call-to-book-modal.active {
        display: flex;
    }

.call-to-book-dialog {
    background: #fff;
    border-radius: 16px;
    width: 100%;
    max-width: 400px;
    padding: 32px 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.call-to-book-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 16px;
}

    .call-to-book-header .js-close-call-to-book {
        background: transparent;
        border: none;
        font-size: 28px;
        cursor: pointer;
        color: #666;
        padding: 0;
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: color 0.2s;
    }

        .call-to-book-header .js-close-call-to-book:hover {
            color: #000;
        }

.call-to-book-body {
    text-align: center;
}

.call-to-book-icon {
    color: #8ab702;
    margin-bottom: 16px;
    display: flex;
    justify-content: center;
}

    .call-to-book-icon svg {
        width: 48px;
        height: 48px;
    }

.call-to-book-title {
    font-size: 22px;
    font-weight: 700;
    color: #000;
    margin: 0 0 12px;
}

.call-to-book-message {
    font-size: 14px;
    color: #666;
    margin: 0 0 20px;
    line-height: 1.5;
}

.call-to-book-phone {
    background: #f5f5f5;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 16px;
}

    .call-to-book-phone p {
        font-size: 12px;
        color: #999;
        margin: 0 0 8px;
    }

.call-to-book-link {
    font-size: 18px;
    font-weight: 600;
    color: #8ab702;
    text-decoration: none;
    display: inline-block;
    transition: color 0.2s;
}

    .call-to-book-link:hover {
        color: #6f8e01;
    }

.call-to-book-info {
    background: #f0f9e8;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 20px;
}

    .call-to-book-info p {
        font-size: 13px;
        color: #555;
        margin: 0;
        line-height: 1.4;
    }

.call-to-book-close-btn {
    background: #8ab702;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px 32px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: background 0.2s;
    display: block;
    text-align: center;
    text-decoration: none;
}

    .call-to-book-close-btn:hover {
        background: #6f8e01;
    }

/* <button> 또는 <a> 태그 공통 스타일 */
button.call-to-book-close-btn {
    border: none;
}

a.call-to-book-close-btn {
    text-decoration: none;
    line-height: 1.4;
}

@media (max-width: 480px) {
    .call-to-book-dialog {
        max-width: 100%;
        padding: 24px 16px;
    }

    .call-to-book-title {
        font-size: 18px;
    }
}