@charset "utf-8";

/* LW Convention — 예약 UI (네이vy + 골드, 글래스모피즘) */
.lwc-reserve-page {
    background: linear-gradient(180deg, #f4f6f9 0%, #eef1f6 100%);
    padding-bottom: 80px;
}

.lwc-reserve-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    margin: 0 auto 40px;
    max-width: 720px;
    padding: 24px 20px;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(30, 42, 58, 0.08);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(18, 26, 36, 0.06);
}

.lwc-reserve-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    min-width: 72px;
    opacity: 0.45;
    transition: opacity 0.3s ease;
}

.lwc-reserve-step.is-active,
.lwc-reserve-step.is-done {
    opacity: 1;
}

.lwc-reserve-step-num {
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    border-radius: 50%;
    font-size: 0.85rem;
    font-weight: 700;
    background: rgba(30, 42, 58, 0.08);
    color: var(--primary, #1e2a3a);
    transition: all 0.3s ease;
}

.lwc-reserve-step.is-active .lwc-reserve-step-num {
    background: linear-gradient(135deg, #1e2a3a 0%, #2d3f56 100%);
    color: #fff;
    box-shadow: 0 4px 16px rgba(30, 42, 58, 0.35);
}

.lwc-reserve-step.is-done .lwc-reserve-step-num {
    background: var(--gold, #b8956a);
    color: #fff;
}

.lwc-reserve-step-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: #5a6577;
    white-space: nowrap;
}

.lwc-reserve-step.is-active .lwc-reserve-step-label {
    color: var(--primary, #1e2a3a);
    font-weight: 600;
}

.lwc-reserve-step-line {
    flex: 1;
    min-width: 24px;
    max-width: 48px;
    height: 2px;
    background: linear-gradient(90deg, rgba(184, 149, 106, 0.3), rgba(30, 42, 58, 0.12));
    margin: 0 4px 18px;
}

.lwc-reserve-body {
    animation: lwcReserveFadeIn 0.5s ease;
}

@keyframes lwcReserveFadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

/* 달력 */
#calendarBox {
    margin-bottom: 28px;
    padding: 28px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(30, 42, 58, 0.08);
    box-shadow: 0 4px 24px rgba(18, 26, 36, 0.05);
}

#calendarBox h3 {
    font-family: var(--font-display, 'Playfair Display', serif);
    font-size: 1.15rem;
    color: var(--primary, #1e2a3a);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gold, #b8956a);
}

#sch_sdt .ui-datepicker {
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: none !important;
}

#sch_sdt .ui-datepicker-header {
    background: linear-gradient(135deg, #1e2a3a, #2d3f56) !important;
    color: #fff !important;
    border: none !important;
}

#sch_sdt .ui-state-default {
    border-radius: 8px !important;
    text-align: center !important;
}

#sch_sdt .ui-state-active,
#sch_sdt .ui-state-hover {
    background: var(--gold, #b8956a) !important;
    color: #fff !important;
    border-color: var(--gold, #b8956a) !important;
}

/* 안내 */
#reserveTip {
    float: none;
    width: 100%;
    height: auto;
    padding: 20px 24px;
    margin-bottom: 28px;
    background: rgba(30, 42, 58, 0.04);
    border: 1px solid rgba(30, 42, 58, 0.1);
    border-left: 4px solid var(--gold, #b8956a);
    border-radius: 0 12px 12px 0;
    list-style: none;
}

#reserveTip li {
    padding: 6px 0 6px 16px;
    background: none;
    font-size: 0.9rem;
    color: #4a5568;
    line-height: 1.6;
    position: relative;
}

#reserveTip li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold, #b8956a);
}

#reserveTip li span {
    color: var(--wine, #8b2942);
    text-decoration: none;
    font-weight: 600;
}

/* 레이아웃 그리드 */
.reserveBox {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 24px;
    clear: both;
    padding-top: 0;
}

@media (max-width: 1024px) {
    .reserveBox {
        grid-template-columns: 1fr;
    }
}

#div_reserve_table {
    grid-column: 1;
}

.plusbox,
.totalBox {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(30, 42, 58, 0.08);
    padding: 20px;
    box-shadow: 0 4px 20px rgba(18, 26, 36, 0.04);
}

.plusbox {
    grid-column: 1;
}

.totalBox {
    grid-column: 2;
    grid-row: 1 / span 2;
    position: sticky;
    top: 100px;
    align-self: start;
}

@media (max-width: 1024px) {
    .totalBox {
        grid-column: 1;
        grid-row: auto;
        position: static;
    }
}

.plusbox h3,
.totalBox h3,
#reserveT h3,
.checkCon h3 {
    background: linear-gradient(135deg, #1e2a3a, #2d3f56);
    color: #fff;
    line-height: 1.4;
    height: auto;
    padding: 12px 16px;
    text-align: center;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 16px;
}

/* 회의실 테이블 */
#reserveT > ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 12px;
}

#reserveT > ul li:first-child {
    float: none;
    font-weight: 700;
    color: var(--primary, #1e2a3a);
    font-size: 1rem;
}

#reserveT > ul li img {
    display: none;
}

#reserveT table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(30, 42, 58, 0.1);
}

#reserveT table th {
    background: rgba(30, 42, 58, 0.06);
    padding: 10px 6px;
    border-bottom: 1px solid rgba(30, 42, 58, 0.08);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--primary, #1e2a3a);
}

#reserveT table td {
    padding: 8px 4px;
    border-bottom: 1px solid rgba(30, 42, 58, 0.06);
    font-size: 0.82rem;
    transition: background 0.2s;
}

#reserveT table tr:hover td {
    background: rgba(184, 149, 106, 0.06);
}

#reserveT table td:first-child {
    background: rgba(30, 42, 58, 0.03);
}

#reserveT .res_rt {
    width: 18px;
    height: 18px;
    accent-color: var(--gold, #b8956a);
    cursor: pointer;
}

#reserveT table td span {
    font-size: 0.75rem;
    font-weight: 600;
}

.plusbox > table,
.plusbox .cop {
    width: 100%;
    border-collapse: collapse;
}

.plusbox .cop th,
.plusbox .cop td {
    padding: 10px 12px;
    border-bottom: 1px solid rgba(30, 42, 58, 0.08);
    font-size: 0.85rem;
}

.plusbox .cop th.subj,
.plusbox .cop th {
    background: rgba(30, 42, 58, 0.04);
    font-weight: 600;
}

.plusbox .res_opt {
    width: 56px;
    padding: 6px 8px;
    border: 1px solid rgba(30, 42, 58, 0.15);
    border-radius: 8px;
    text-align: center;
    font-size: 0.85rem;
}

.plusbox .res_opt:focus {
    outline: none;
    border-color: var(--gold, #b8956a);
    box-shadow: 0 0 0 3px rgba(184, 149, 106, 0.2);
}

/* 선택 확인 패널 */
.finalBox {
    margin: 0;
    padding: 0;
}

.finalBox dt {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary, #1e2a3a);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-top: 16px;
    margin-bottom: 8px;
}

.finalBox dt:first-child {
    margin-top: 0;
}

.finalBox dt span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gold, #b8956a);
    text-transform: none;
    letter-spacing: 0;
}

.finalBox dd {
    margin: 0 0 6px;
    padding: 8px 12px;
    background: rgba(30, 42, 58, 0.04);
    border-radius: 8px;
    font-size: 0.88rem;
    color: #4a5568;
}

/* 버튼 */
.lwc-reserve-page .btnPlus a,
.lwc-reserve-page .btnPlus2 a,
.lwc-reserve-page .btnPlus3 a,
.lwc-reserve-page .btnPlus4 a,
.lwc-reserve-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 120px;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--gold, #b8956a), #c9a87a);
    color: #fff !important;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 16px rgba(184, 149, 106, 0.35);
}

.lwc-reserve-page .btnPlus a:hover,
.lwc-reserve-page .btnPlus2 a:hover,
.lwc-reserve-page .btnPlus3 a:hover,
.lwc-reserve-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(184, 149, 106, 0.45);
}

.lwc-reserve-page .btnPlus2 a {
    float: none;
    width: auto;
    margin-top: 12px;
}

.lwc-reserve-page .btnPlus3 a {
    width: auto;
    margin: 32px auto;
}

.lwc-reserve-page .btnPlus4 a {
    min-width: 90px;
    padding: 8px 16px;
    font-size: 0.8rem;
}

.lwc-reserve-page .btnPlus5 a {
    background: linear-gradient(135deg, #1e2a3a, #2d3f56);
    box-shadow: 0 4px 16px rgba(30, 42, 58, 0.25);
}

/* 약관·폼 */
.checkCon {
    max-width: 920px;
    margin: 0 auto;
}

.checkCon > div {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    border: 1px solid rgba(30, 42, 58, 0.08);
    padding: 16px;
    margin-bottom: 20px;
}

.checkCon > div > textarea {
    width: 100%;
    border: 1px solid rgba(30, 42, 58, 0.12);
    border-radius: 8px;
    padding: 12px;
    font-size: 0.85rem;
    line-height: 1.6;
    resize: vertical;
}

.checkCon > div p {
    float: none;
    margin: 12px 0 0;
    height: auto;
    line-height: 1.5;
}

.tipTxt {
    text-align: center;
    color: #5a6577;
    font-size: 0.9rem;
    line-height: 1.7;
    padding: 16px;
    background: rgba(184, 149, 106, 0.08);
    border-radius: 10px;
}

.checkTable,
.formTable,
#reserveList,
#reserveList2,
.chTable {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(30, 42, 58, 0.1);
    background: #fff;
    margin-bottom: 20px;
}

.checkTable th,
.formTable th,
#reserveList th,
#reserveList2 th,
.chTable th {
    background: rgba(30, 42, 58, 0.06);
    padding: 12px 14px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary, #1e2a3a);
    border-bottom: 1px solid rgba(30, 42, 58, 0.08);
}

.checkTable td,
.formTable td,
#reserveList td,
#reserveList2 td,
.chTable td {
    padding: 12px 14px;
    border-bottom: 1px solid rgba(30, 42, 58, 0.06);
    font-size: 0.88rem;
}

.formTable .csI,
.chTable .csI,
#retBox input {
    padding: 10px 14px;
    border: 1px solid rgba(30, 42, 58, 0.15);
    border-radius: 8px;
    font-size: 0.9rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.formTable .csI:focus,
#retBox input:focus {
    outline: none;
    border-color: var(--gold, #b8956a);
    box-shadow: 0 0 0 3px rgba(184, 149, 106, 0.15);
}

.formTable th span,
.checkTable .right {
    color: var(--wine, #8b2942);
}

/* 조회 */
#retBox {
    max-width: 480px;
    margin: 0 auto;
    padding: 32px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    border: 1px solid rgba(30, 42, 58, 0.08);
    box-shadow: 0 8px 32px rgba(18, 26, 36, 0.06);
}

#retBox dl {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 16px;
    align-items: center;
    margin-bottom: 24px;
}

#retBox dt {
    font-weight: 600;
    color: var(--primary, #1e2a3a);
}

#retBox dd {
    margin: 0;
}

#retBox dd input {
    width: 100%;
}

#retBox p {
    text-align: center;
}

#retBox input[type=submit],
.lwc-reserve-search-btn {
    padding: 12px 40px;
    background: linear-gradient(135deg, #1e2a3a, #2d3f56);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.95rem;
}

.retTitle {
    text-align: center;
    margin-bottom: 28px;
    font-size: 1rem;
    color: #4a5568;
}

.stateTxt {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary, #1e2a3a);
    margin: 24px 0;
    padding: 16px;
    background: rgba(184, 149, 106, 0.12);
    border-radius: 10px;
}

.adminBtn {
    display: flex;
    gap: 12px;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.adminBtn a {
    padding: 10px 20px;
    background: var(--primary, #1e2a3a);
    color: #fff !important;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.85rem;
}

.visiblediv > div {
    border-color: var(--gold, #b8956a) !important;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* ===== reserve2 — 정보 입력 ===== */
.lwc-reserve-form {
    max-width: 920px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.lwc-rsv-card {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(30, 42, 58, 0.08);
    border-radius: 20px;
    padding: 28px 32px;
    box-shadow: 0 8px 40px rgba(18, 26, 36, 0.06);
}

.lwc-rsv-card-head {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(30, 42, 58, 0.08);
}

.lwc-rsv-card-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(30, 42, 58, 0.08), rgba(184, 149, 106, 0.15));
    color: var(--primary, #1e2a3a);
    font-size: 1.15rem;
}

.lwc-rsv-card-head h3 {
    margin: 0 0 4px;
    font-family: var(--font-display, 'Playfair Display', serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary, #1e2a3a);
    background: none;
    border-radius: 0;
    padding: 0;
    height: auto;
    line-height: 1.3;
    text-align: left;
}

.lwc-rsv-card-head p {
    margin: 0;
    font-size: 0.85rem;
    color: #6b7280;
}

.lwc-rsv-table-wrap {
    overflow-x: auto;
    border-radius: 14px;
    border: 1px solid rgba(30, 42, 58, 0.08);
    margin-bottom: 20px;
}

.lwc-rsv-schedule {
    margin-bottom: 0;
    border: none;
    border-radius: 0;
}

.lwc-rsv-schedule thead th {
    background: linear-gradient(135deg, #1e2a3a, #2d3f56);
    color: #fff;
    font-weight: 500;
    font-size: 0.78rem;
    padding: 12px 8px;
    border: none;
    vertical-align: middle;
}

.lwc-rsv-schedule thead th span {
    display: block;
    font-size: 0.7rem;
    opacity: 0.75;
    font-weight: 400;
    margin-top: 2px;
}

.lwc-rsv-schedule tbody td {
    text-align: center;
    padding: 14px 8px;
    font-size: 0.88rem;
}

.lwc-rsv-schedule tbody td:first-child {
    font-weight: 600;
    color: var(--primary, #1e2a3a);
    white-space: nowrap;
}

.lwc-rsv-schedule tbody td:nth-child(2) {
    font-weight: 500;
}

.lwc-rsv-col-hide,
.lwc-rsv-schedule td:nth-child(5),
.lwc-rsv-schedule td:nth-child(6) {
    display: none;
}

.lwc-rsv-schedule tbody tr:not(.lwc-rsv-opt-row):hover td {
    background: rgba(184, 149, 106, 0.06);
}

.lwc-rsv-schedule td:not(:empty):not(:first-child):not(:nth-child(2)) {
    color: var(--gold, #b8956a);
    font-weight: 700;
    font-size: 1rem;
}

.lwc-rsv-opt-row td {
    text-align: left !important;
    padding: 16px 20px !important;
    background: rgba(30, 42, 58, 0.03);
}

.lwc-rsv-opt-row .plusGoods {
    margin: 0;
}

.lwc-rsv-opt-row dt {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary, #1e2a3a);
    margin-bottom: 8px;
}

.lwc-rsv-opt-row ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.lwc-rsv-opt-row li {
    padding: 6px 14px;
    background: #fff;
    border: 1px solid rgba(184, 149, 106, 0.35);
    border-radius: 20px;
    font-size: 0.82rem;
    color: #4a5568;
}

.lwc-rsv-opt-row li.lwc-rsv-opt-none {
    color: #9ca3af;
    border-style: dashed;
}

.lwc-rsv-total {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(30, 42, 58, 0.1);
}

.lwc-rsv-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    background: #fff;
    border-bottom: 1px solid rgba(30, 42, 58, 0.06);
    font-size: 0.9rem;
    color: #5a6577;
}

.lwc-rsv-total-row strong {
    color: var(--primary, #1e2a3a);
    font-weight: 600;
}

.lwc-rsv-total-final {
    background: linear-gradient(135deg, rgba(30, 42, 58, 0.04), rgba(184, 149, 106, 0.12));
    border-bottom: none;
    padding: 18px 20px;
}

.lwc-rsv-total-final span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary, #1e2a3a);
}

.lwc-rsv-total-final strong {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--wine, #8b2942);
}

.lwc-rsv-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 24px;
}

.lwc-rsv-fields-2 {
    grid-template-columns: 1fr 1fr;
}

.lwc-rsv-field-full {
    grid-column: 1 / -1;
}

.lwc-rsv-field label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary, #1e2a3a);
    margin-bottom: 8px;
}

.lwc-rsv-field label .req {
    color: var(--wine, #8b2942);
}

.lwc-rsv-field .csI,
.lwc-rsv-field textarea {
    width: 100%;
    box-sizing: border-box;
}

.lwc-rsv-field textarea {
    min-height: 120px;
    resize: vertical;
}

.lwc-rsv-radio-group {
    display: flex;
    gap: 12px;
}

.lwc-rsv-radio {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: 1px solid rgba(30, 42, 58, 0.15);
    border-radius: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.lwc-rsv-radio:has(input:checked) {
    border-color: var(--gold, #b8956a);
    background: rgba(184, 149, 106, 0.1);
    font-weight: 600;
}

.lwc-rsv-radio input {
    accent-color: var(--gold, #b8956a);
}

.lwc-rsv-phone {
    display: flex;
    align-items: center;
    gap: 6px;
}

.lwc-rsv-phone .csI {
    flex: 1;
    min-width: 0;
    text-align: center;
}

.lwc-rsv-phone span {
    color: #9ca3af;
    flex-shrink: 0;
}

.lwc-rsv-file {
    position: relative;
}

.lwc-rsv-file input[type=file] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.lwc-rsv-file-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border: 1px dashed rgba(184, 149, 106, 0.5);
    border-radius: 10px;
    background: rgba(184, 149, 106, 0.06);
    color: #5a6577;
    font-size: 0.88rem;
    cursor: pointer;
    transition: all 0.2s;
}

.lwc-rsv-file-label:hover {
    border-color: var(--gold, #b8956a);
    background: rgba(184, 149, 106, 0.12);
}

.lwc-rsv-inwon-wrap {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(30, 42, 58, 0.08);
}

.lwc-rsv-inwon-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

.lwc-rsv-inwon-table tr:first-child td {
    background: rgba(30, 42, 58, 0.06);
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--primary, #1e2a3a);
    padding: 10px 12px;
}

.lwc-rsv-inwon-table td {
    padding: 12px;
    border-bottom: 1px solid rgba(30, 42, 58, 0.06);
    font-size: 0.88rem;
}

.lwc-rsv-inwon-table select,
.lwc-rsv-inwon-table input[type=text] {
    padding: 8px 10px;
    border: 1px solid rgba(30, 42, 58, 0.15);
    border-radius: 8px;
    font-size: 0.85rem;
}

.lwc-rsv-notice {
    padding: 0;
}

.lwc-rsv-notice-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 16px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary, #1e2a3a);
}

.lwc-rsv-notice-title i {
    color: var(--gold, #b8956a);
}

.lwc-rsv-notice-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lwc-rsv-notice-list li {
    position: relative;
    padding: 12px 16px 12px 36px;
    background: rgba(30, 42, 58, 0.03);
    border-radius: 10px;
    font-size: 0.85rem;
    line-height: 1.65;
    color: #4a5568;
}

.lwc-rsv-notice-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 14px;
    top: 14px;
    font-size: 0.7rem;
    color: var(--gold, #b8956a);
}

.lwc-rsv-notice-list em {
    color: var(--wine, #8b2942);
    font-style: normal;
    font-weight: 600;
}

.lwc-rsv-notice-footer {
    margin: 20px 0 0;
    padding-top: 16px;
    border-top: 1px solid rgba(30, 42, 58, 0.08);
    font-size: 0.88rem;
    color: #6b7280;
    text-align: center;
}

.lwc-rsv-notice-footer a {
    color: var(--primary, #1e2a3a);
    font-weight: 600;
    text-decoration: none;
}

.lwc-rsv-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 8px 0 24px;
}

.lwc-rsv-btn-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    border: 1px solid rgba(30, 42, 58, 0.15);
    border-radius: 10px;
    color: #5a6577 !important;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s;
}

.lwc-rsv-btn-back:hover {
    border-color: var(--primary, #1e2a3a);
    color: var(--primary, #1e2a3a) !important;
    background: rgba(30, 42, 58, 0.04);
}

.lwc-rsv-submit .btnPlus3 {
    margin: 0;
}

.lwc-rsv-submit .btnPlus3 a {
    min-width: 180px;
    padding: 16px 32px;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .lwc-rsv-card {
        padding: 20px 18px;
        border-radius: 16px;
    }

    .lwc-rsv-fields,
    .lwc-rsv-fields-2 {
        grid-template-columns: 1fr;
    }

    .lwc-rsv-radio-group {
        flex-direction: column;
    }

    .lwc-rsv-submit {
        flex-direction: column-reverse;
    }

    .lwc-rsv-btn-back,
    .lwc-rsv-submit .btnPlus3 a {
        width: 100%;
        justify-content: center;
    }
}
