/* =========================================================
   Muju Mentor Rental Reservation V3
========================================================= */

.reservation-page{
    padding:54px 20px 80px;
    background:var(--bg, #f8fafc);
}

.reservation-shell{
    max-width:1180px;
    margin:0 auto;
}

.reservation-notice{
    display:flex;
    gap:12px;
    align-items:center;
    justify-content:space-between;
    padding:18px 22px;
    margin-bottom:22px;
    border:1px solid rgba(37,99,235,.14);
    border-radius:22px;
    background:linear-gradient(135deg,#fff,#eff6ff);
    box-shadow:0 12px 34px rgba(15,23,42,.06);
}

.reservation-notice strong{
    flex:0 0 auto;
    color:var(--blue,#2563eb);
    font-weight:700;
}

.reservation-notice span{
    color:var(--text,#475467);
    font-size:15px;
    line-height:1.55;
}

.reservation-progress{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:10px;
    margin-bottom:22px;
}

.reservation-progress button{
    display:flex;
    flex-direction:column;
    gap:4px;
    min-height:72px;
    padding:13px 10px;
    border:1px solid var(--line,#e5e7eb);
    border-radius:18px;
    background:#fff;
    color:#98a2b3;
    text-align:left;
    box-shadow:0 10px 26px rgba(15,23,42,.04);
}

.reservation-progress button b{
    font-size:13px;
    color:inherit;
}

.reservation-progress button span{
    font-size:14px;
    font-weight:800;
    color:inherit;
}

.reservation-progress button.is-active{
    border-color:rgba(37,99,235,.45);
    background:linear-gradient(135deg,var(--blue,#2563eb),var(--blue2,#1d4ed8));
    color:#fff;
    box-shadow:0 16px 36px rgba(37,99,235,.24);
}

.reservation-progress button.is-done{
    color:var(--blue,#2563eb);
    border-color:rgba(37,99,235,.22);
    background:#eff6ff;
}

.reservation-grid{
    display:grid;
    grid-template-columns:minmax(0,1fr) 350px;
    gap:22px;
    align-items:start;
}

.reservation-main,
.estimate-card{
    border:1px solid var(--line,#e5e7eb);
    border-radius:28px;
    background:#fff;
    box-shadow:var(--shadow,0 18px 50px rgba(15,23,42,.12));
}

.reservation-main{
    padding:30px;
}

.reservation-step{
    display:none;
}

.reservation-step.is-active{
    display:block;
    animation:stepFade .22s ease-out;
}

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

.step-head{
    margin-bottom:24px;
}

.step-head p{
    display:inline-flex;
    align-items:center;
    height:30px;
    padding:0 12px;
    margin:0 0 12px;
    border-radius:999px;
    background:var(--blue-soft,#eff6ff);
    color:var(--blue,#2563eb);
    font-size:13px;
    font-weight:700;
}

.step-head h2{
    margin:0;
    font-size:30px;
    line-height:1.22;
    letter-spacing:-.04em;
    color:var(--navy,#111827);
}

.step-head span{
    display:block;
    margin-top:10px;
    color:var(--muted,#667085);
    font-size:15px;
}

.date-panel{
    display:grid;
    grid-template-columns:280px minmax(0,1fr);
    gap:14px;
    margin-bottom:18px;
}

.date-input-card,
.date-result{
    min-height:142px;
    padding:22px;
    border-radius:24px;
    border:1px solid var(--line,#e5e7eb);
    background:#fff;
}

.date-input-card{
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    background:linear-gradient(135deg,#fff,#f8fafc);
}

.date-input-card span{
    font-size:14px;
    color:var(--muted,#667085);
    font-weight:800;
}

.date-input-card input{
    width:100%;
    height:52px;
    padding:0 14px;
    border:1px solid var(--line,#e5e7eb);
    border-radius:16px;
    font-size:17px;
    font-weight:800;
    color:var(--navy,#111827);
}

.date-result{
    background:linear-gradient(135deg,#eff6ff,#eef2f7);
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.date-result strong{
    display:block;
    font-size:24px;
    line-height:1.25;
    color:var(--navy,#111827);
}

.date-result p{
    margin-top:8px;
    color:var(--text,#475467);
}

.calendar-placeholder{
    display:flex;
    align-items:center;
    gap:18px;
    padding:22px;
    border-radius:24px;
    background:#f8fafc;
    border:1px dashed #cbd5e1;
}

.calendar-icon{
    display:flex;
    align-items:center;
    justify-content:center;
    width:64px;
    height:64px;
    border-radius:20px;
    background:#fff;
    font-size:30px;
    box-shadow:0 10px 25px rgba(15,23,42,.08);
}

.calendar-placeholder h3{
    margin:0 0 4px;
    color:var(--navy,#111827);
}

.calendar-placeholder p{
    margin:0;
    color:var(--muted,#667085);
    font-size:14px;
    line-height:1.55;
}

.item-section{
    display:grid;
    gap:14px;
}

.item-section.two-col{
    grid-template-columns:repeat(2,minmax(0,1fr));
}

.item-group-title{
    margin:8px 0 0;
    font-size:18px;
    font-weight:700;
    color:var(--navy,#111827);
}

.choice-card{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
    padding:20px;
    border:1px solid var(--line,#e5e7eb);
    border-radius:22px;
    background:#fff;
    transition:.18s ease;
}

.choice-card:hover,
.choice-card.is-selected{
    border-color:rgba(37,99,235,.48);
    box-shadow:0 16px 36px rgba(37,99,235,.12);
    transform:translateY(-1px);
}

.choice-card h3{
    margin:8px 0 5px;
    font-size:19px;
    color:var(--navy,#111827);
}

.choice-card p{
    margin:0 0 9px;
    color:var(--muted,#667085);
    font-size:14px;
}

.choice-card strong{
    display:block;
    color:var(--orange,#2563eb);
    font-size:20px;
    font-weight:700;
}

.chip{
    display:inline-flex;
    align-items:center;
    height:26px;
    padding:0 10px;
    border-radius:999px;
    background:var(--blue-soft,#eff6ff);
    color:var(--blue,#2563eb);
    font-size:12px;
    font-weight:700;
}

.chip.orange{
    background:var(--orange-soft,#fff3e8);
    color:var(--orange,#2563eb);
}

.qty-control{
    flex:0 0 auto;
    display:flex;
    align-items:center;
    gap:8px;
    padding:6px;
    border-radius:999px;
    background:#f8fafc;
    border:1px solid var(--line,#e5e7eb);
}

.qty-control button{
   width:42px;
   height:42px;
   border:1px solid #cbd5e1;
   border-radius:14px;
   background:#f8fafc;
   color:#334155;
   font-size:20px;
   font-weight:700;
   cursor:pointer;
   transition:all .16s ease;
}

.qty-control button:hover{
   border-color:#2563eb;
   background:#eff6ff;
   color:#2563eb;
}

.qty-control input{
    width:34px;
    border:0;
    background:transparent;
    text-align:center;
    font-weight:700;
    color:var(--navy,#111827);
}

.lift-card.is-selected .qty-control button{

   border-color:#fed7aa;
   background:#eef2f7;
   color:#2563eb;

}

.lift-card.is-selected .qty-control button:hover{

   background:#2563eb;
   color:#ffffff;

}

.customer-form{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:16px;
}

.customer-form label{
    display:flex;
    flex-direction:column;
    gap:8px;
    color:var(--navy,#111827);
    font-weight:800;
}

.customer-form label.wide,
.customer-form label.agree-line{
    grid-column:1 / -1;
}

.customer-form input,
.customer-form textarea{
    width:100%;
    border:1px solid var(--line,#e5e7eb);
    border-radius:16px;
    padding:15px 16px;
    outline:none;
    background:#fff;
    color:var(--navy,#111827);
}

.customer-form input:focus,
.customer-form textarea:focus{
    border-color:rgba(37,99,235,.55);
    box-shadow:0 0 0 4px rgba(37,99,235,.08);
}

.customer-form label.agree-line{
    flex-direction:row;
    align-items:center;
    padding:16px;
    border-radius:16px;
    background:#f8fafc;
    color:var(--text,#475467);
}

.customer-form label.agree-line input{
    width:18px;
    height:18px;
}

.final-guide{
    padding:22px;
    border-radius:22px;
    background:#f8fafc;
    border:1px solid var(--line,#e5e7eb);
}

.final-guide h3{
    margin:0 0 8px;
    color:var(--navy,#111827);
}

.final-guide p{
    margin:0;
    color:var(--text,#475467);
    line-height:1.65;
}

.final-actions{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-top:20px;
}

.step-actions{
    display:flex;
    justify-content:space-between;
    gap:10px;
    margin-top:30px;
    padding-top:22px;
    border-top:1px solid var(--line,#e5e7eb);
}



.btn-prev,
.btn-outline{
    background:#fff;
    color:var(--navy,#111827);
    border:1px solid var(--line,#e5e7eb);
}



button:disabled{
    cursor:not-allowed;
    opacity:.45;
}

.estimate-card{
    position:sticky;
    top:20px;
    padding:24px;
}

.estimate-head{
    margin-bottom:18px;
}

.estimate-head p{
    margin:0 0 6px;
    color:var(--blue,#2563eb);
    font-size:12px;
    font-weight:700;
    letter-spacing:.06em;
}

.estimate-head h2{
    margin:0;
    color:var(--navy,#111827);
    font-size:26px;
    letter-spacing:-.04em;
}

.estimate-row,
.estimate-block{
    padding:16px 0;
    border-top:1px solid var(--line,#e5e7eb);
}

.estimate-row span,
.estimate-block span{
    display:block;
    margin-bottom:5px;
    color:var(--muted,#667085);
    font-size:13px;
    font-weight:700;
}

.estimate-row strong,
.estimate-block div{
    color:var(--navy,#111827);
    font-weight:700;
    line-height:1.55;
}

.estimate-line{
    display:flex;
    justify-content:space-between;
    gap:12px;
    margin:5px 0;
    font-size:14px;
}

.estimate-total{
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:12px;
    margin-top:10px;
    padding:20px;
    border-radius:20px;
    background:linear-gradient(135deg,#111827,#1f2937);
    color:#fff;
}

.estimate-total span{
    color:rgba(255,255,255,.72);
    font-size:14px;
    font-weight:800;
}

.estimate-total strong{
    font-size:28px;
    color:#fff;
}

.estimate-notice{
    margin:14px 0 0;
    color:var(--muted,#667085);
    font-size:13px;
    line-height:1.55;
}

.estimate-print-card{
    width:720px;
    max-width:100%;
    margin:30px auto 0;
    padding:34px;
    border-radius:28px;
    background:#fff;
    color:#111827;
    box-shadow:0 20px 60px rgba(15,23,42,.14);
}

.reservation-page .estimate-print-card[aria-hidden="true"]{
    position:absolute;
    left:-9999px;
    top:0;
}

.print-brand{
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:20px;
    padding-bottom:18px;
    border-bottom:3px solid #111827;
}

.print-brand span{
    color:#2563eb;
    font-weight:700;
    font-size:13px;
    letter-spacing:.08em;
}

.print-brand strong{
    font-size:32px;
    letter-spacing:-.05em;
}

.print-no{
    margin-top:16px;
    padding:12px 14px;
    border-radius:14px;
    background:#eff6ff;
    color:#2563eb;
    font-weight:700;
}

.print-list{
    margin:20px 0;
}

.print-list div{
    display:flex;
    justify-content:space-between;
    gap:16px;
    padding:13px 0;
    border-bottom:1px solid #e5e7eb;
}

.print-list dt{
    color:#667085;
    font-weight:700;
}

.print-list dd{
    margin:0;
    text-align:right;
    font-weight:700;
}

.print-items{
    display:grid;
    gap:8px;
    margin:18px 0;
}

.print-item-line{
    display:flex;
    justify-content:space-between;
    gap:16px;
    padding:11px 14px;
    border-radius:12px;
    background:#f8fafc;
    font-weight:800;
}

.print-total{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-top:18px;
    padding:22px;
    border-radius:18px;
    background:#111827;
    color:#fff;
    font-weight:700;
}

.print-total strong{
    font-size:28px;
}

.print-notice{
    margin:16px 0 0;
    color:#667085;
    font-size:13px;
    line-height:1.65;
}

.complete-head{
    text-align:center;
    margin-bottom:22px;
}

.complete-kicker{
    display:inline-flex;
    height:32px;
    align-items:center;
    padding:0 14px;
    border-radius:999px;
    background:#eff6ff;
    color:#2563eb;
    font-weight:700;
}

.complete-head h2{
    margin:12px 0 8px;
    font-size:34px;
    letter-spacing:-.04em;
}

.complete-head p:last-child{
    color:#667085;
}

.complete-actions{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:10px;
    margin-bottom:22px;
}

.empty-box{
    padding:60px 20px;
    border-radius:24px;
    background:#fff;
    text-align:center;
    color:#667085;
    box-shadow:0 18px 50px rgba(15,23,42,.08);
}

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

    .estimate-card{
        position:relative;
        top:auto;
        order:2;
    }
}

@media (max-width:767px){
    .reservation-page{
        padding:34px 16px 60px;
    }

    .reservation-notice{
        display:block;
    }

    .reservation-notice span{
        display:block;
        margin-top:6px;
    }

    .reservation-progress{
        display:flex;
        gap:8px;
        overflow-x:auto;
        padding-bottom:4px;
    }

    .reservation-progress button{
        min-width:92px;
    }

    .reservation-main{
        padding:22px 18px;
        border-radius:24px;
    }

    .step-head h2{
        font-size:24px;
    }

    .date-panel,
    .item-section.two-col,
    .customer-form{
        grid-template-columns:1fr;
    }

    .choice-card{
        align-items:flex-start;
        flex-direction:column;
    }

    .qty-control{
        width:100%;
        justify-content:space-between;
    }

    .step-actions,
    .final-actions{
        flex-direction:column;
    }

    .btn-prev,
    .btn-next,
    .btn-primary,
    .btn-outline{
        width:100%;
    }

    .estimate-card{
        padding:22px 18px;
        border-radius:24px;
    }

    .estimate-print-card{
        padding:24px 18px;
        border-radius:22px;
    }

    .print-brand{
        display:block;
    }

    .print-brand strong{
        display:block;
        margin-top:6px;
        font-size:27px;
    }
}
/* =========================================================
   Reservation Layout
========================================================= */

.reservation-page{
   background:#f8fafc;
   padding:70px 20px 90px;
   color:#111827;
}

.reservation-inner{
   max-width:1190px;
   padding:100px 0;
   margin:0 auto;
}

.reservation-head{
   display:flex;
   align-items:flex-end;
   justify-content:space-between;
   gap:24px;
   margin-bottom:28px;
}

.reservation-eyebrow{
   margin:0 0 8px;
   font-size:13px;
   font-weight:700;
   letter-spacing:.08em;
   color:#2563eb;
}

.reservation-head h2{
   margin:0;
   font-size:34px;
   line-height:1.2;
   letter-spacing:-.045em;
   font-weight:700;
}

.reservation-head p:not(.reservation-eyebrow){
   margin:12px 0 0;
   font-size:16px;
   line-height:1.65;
   color:#64748b;
}

.reservation-progress{
   display:grid;
   grid-template-columns:repeat(7, 1fr);
   gap:8px;
   margin-bottom:26px;
}

.progress-step{
   position:relative;
   padding:14px 10px;
   background:#fff;
   border:1px solid #e5e7eb;
   border-radius:16px;
   text-align:center;
   box-shadow:0 8px 22px rgba(15,23,42,.04);
}

.progress-step span{
   display:block;
   margin-bottom:4px;
   font-size:12px;
   font-weight:700;
   color:#94a3b8;
}

.progress-step strong{
   display:block;
   font-size:14px;
   font-weight:700;
   color:#475569;
}

.progress-step.is-active{
   border-color:#2563eb;
   box-shadow:0 14px 34px rgba(37,99,235,.16);
}

.progress-step.is-active span,
.progress-step.is-active strong{
   color:#2563eb;
}

.progress-step.is-done{
   background:#eff6ff;
   border-color:#bfdbfe;
}

.reservation-layout{
   display:grid;
   grid-template-columns:minmax(0, 1fr) 340px;
   gap:24px;
   align-items:start;
}

.reservation-content{
   min-width:0;
}

.reservation-step{
   display:none;
   background:#fff;
   border:1px solid #e5e7eb;
   border-radius:28px;
   padding:30px;
   box-shadow:0 18px 50px rgba(15,23,42,.08);
}

.reservation-step.is-active{
   display:block;
}

.step-title{
   margin-bottom:24px;
}

.step-title p{
   margin:0 0 8px;
   font-size:13px;
   font-weight:700;
   color:#2563eb;
   letter-spacing:.06em;
}

.step-title h3{
   margin:0;
   font-size:28px;
   line-height:1.24;
   letter-spacing:-.04em;
   font-weight:700;
}

.step-title span{
   display:block;
   margin-top:10px;
   font-size:15px;
   line-height:1.6;
   color:#64748b;
}
@media (max-width: 640px) {
   .reservation-inner {
      padding: 72px 0;
   }
}
/* =========================================================
   Calendar
========================================================= */

.calendar-card{
   border:1px solid #e5e7eb;
   border-radius:24px;
   padding:22px;
   background:linear-gradient(180deg,#ffffff,#f8fafc);
}

.calendar-top{
   display:flex;
   align-items:center;
   justify-content:space-between;
   gap:12px;
   margin-bottom:18px;
}

.calendar-top h4{
   margin:0;
   font-size:22px;
   font-weight:700;
   letter-spacing:-.035em;
}

.calendar-nav{
   width:42px;
   height:42px;
   border:0;
   border-radius:14px;
   background:#111827;
   color:#fff;
   font-size:28px;
   line-height:1;
   cursor:pointer;
}

.calendar-guide{
   display:flex;
   flex-wrap:wrap;
   gap:12px;
   margin-bottom:18px;
   padding:12px 14px;
   border-radius:16px;
   background:#f1f5f9;
}

.calendar-guide span{
   display:inline-flex;
   align-items:center;
   gap:6px;
   font-size:13px;
   font-weight:800;
   color:#475569;
}

.cal-dot{
   display:inline-block;
   width:9px;
   height:9px;
   border-radius:50%;
   background:#22c55e;
}

.cal-dot.selected{
   background:#2563eb;
}

.cal-dot.today{
   background:#2563eb;
}

.calendar-week{
   display:grid;
   grid-template-columns:repeat(7, 1fr);
   margin-bottom:8px;
}

.calendar-week div{
   padding:8px 0;
   text-align:center;
   font-size:13px;
   font-weight:700;
   color:#64748b;
}

.calendar-week div:first-child{
   color:#ef4444;
}

.calendar-week div:last-child{
   color:#2563eb;
}

.reservation-calendar{
   display:grid;
   grid-template-columns:repeat(7, 1fr);
   gap:8px;
}

.calendar-day{
   position:relative;
   min-height:74px;
   border:1px solid #e5e7eb;
   border-radius:18px;
   background:#fff;
   cursor:pointer;
   text-align:left;
   padding:10px;
   transition:all .16s ease;
}

.calendar-day:hover{
   border-color:#2563eb;
   box-shadow:0 10px 24px rgba(37,99,235,.12);
   transform:translateY(-1px);
}

.calendar-day .day-num{
   display:inline-flex;
   align-items:center;
   justify-content:center;
   width:28px;
   height:28px;
   border-radius:50%;
   font-size:14px;
   font-weight:700;
   color:#111827;
}

.calendar-day:after{

   display:none;

}

.calendar-day.is-other{
   background:#f8fafc;
   cursor:default;
}

.calendar-day.is-other:after{
   display:none;
}

.calendar-day.is-past{
   background:#f3f4f6;
   color:#9ca3af;
   cursor:not-allowed;
}

.calendar-day.is-past .day-num,
.calendar-day.is-season-disabled .day-num{
   color:#9ca3af;
}

.calendar-day.is-past:after,
.calendar-day.is-season-disabled:after,
.calendar-day.is-selected:after{
   display:none;
}

.calendar-day.is-season-disabled{
   border-color:#e5e7eb;
   background:#f1f5f9;
   color:#94a3b8;
   cursor:not-allowed;
}

.calendar-day.is-season-disabled:hover{
   border-color:#e5e7eb;
   box-shadow:none;
   transform:none;
}

.calendar-day.is-today .day-num{
   background:#2563eb;
   color:#fff;
}

.calendar-day.is-season-disabled.is-today .day-num{
   background:#cbd5e1;
   color:#fff;
}

.calendar-day.is-selected{
   border-color:#2563eb;
   background:#eff6ff;
   box-shadow:0 14px 30px #ccdaed;
}

.calendar-day.is-selected .day-num{
   background:#2563eb;
   color:#fff;
}
.cal-dot.disabled{

   background:#cbd5e1;

}



/* =========================================================
   Selected Date
========================================================= */

.selected-date-box{
   display:grid;
   grid-template-columns:1fr 1fr;
   gap:14px;
   margin-top:18px;
}

.selected-date-box > div{
   padding:18px;
   border-radius:20px;
   background:#eff6ff;
   border:1px solid #bfdbfe;
}

.selected-date-box span{
   display:block;
   margin-bottom:6px;
   font-size:13px;
   font-weight:700;
   color:#2563eb;
}

.selected-date-box strong{
   display:block;
   font-size:20px;
   font-weight:700;
   color:#111827;
}

.step-actions{
   display:flex;
   justify-content:flex-end;
   margin-top:24px;
}

.btn-next{
   min-width:190px;
   height:52px;
   border:0;
   border-radius:16px;
   background:#2563eb;
   color:#fff;
   font-size:16px;
   font-weight:700;
   cursor:pointer;
   box-shadow:0 14px 26px #c6cfdc;
}

.btn-next:disabled{
   background:#cbd5e1;
   box-shadow:none;
   cursor:not-allowed;
}

/* =========================================================
   Estimate
========================================================= */

.estimate-panel{
   position:sticky;
   top:24px;
}

.estimate-card{
   background:#fff;
   border:1px solid #e5e7eb;
   border-radius:28px;
   padding:24px;
   box-shadow:0 18px 50px rgba(15,23,42,.1);
}

.estimate-head{
   padding-bottom:18px;
   border-bottom:2px solid #111827;
}

.estimate-head p{
   margin:0 0 6px;
   font-size:12px;
   font-weight:700;
   letter-spacing:.08em;
   color:#c7cdda;
}

.estimate-head h3{
   margin:0;
   font-size:24px;
   font-weight:700;
   letter-spacing:-.04em;
}

.estimate-section{
   padding:18px 0;
   border-bottom:1px solid #e5e7eb;
}

.estimate-section label{
   display:block;
   margin-bottom:8px;
   font-size:13px;
   font-weight:700;
   color:#64748b;
}

.estimate-section strong,
.estimate-section div{
   font-size:15px;
   font-weight:800;
   color:#111827;
   line-height:1.55;
}

.estimate-total{
   display:flex;
   align-items:center;
   justify-content:space-between;
   gap:18px;
   margin-top:10px;
   padding:22px 24px;
   border-radius:24px;
   background:linear-gradient(135deg,#111827,#1f2937);
   color:#fff;
}

.estimate-total span{
   flex:0 0 auto;
   font-size:15px;
   font-weight:700;
   color:rgba(255,255,255,.72);
}

.estimate-total strong{
   flex:0 0 auto;
   padding-left:12px;
   font-size:30px;
   font-weight:700;
   color:#ffffff;
   letter-spacing:-.04em;
   white-space:nowrap;
}

/* =========================================================
   Product / Option / Lesson List Layout
========================================================= */

.product-time-notice{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
    margin-bottom:18px;
    padding:18px 20px;
    border-radius:20px;
    background:#f8fafc;
    border:1px solid #e5e7eb;
}

.product-time-notice strong{
    display:block;
    margin-bottom:4px;
    font-size:16px;
    font-weight:700;
    color:#111827;
}

.product-time-notice span{
    display:block;
    font-size:15px;
    font-weight:700;
    color:#2563eb;
}

.product-time-notice p{
    margin:0;
    font-size:14px;
    font-weight:700;
    color:#64748b;
}

.product-time-options{
    display:flex;
    gap:8px;
}

.product-time-option{
    height:38px;
    padding:0 14px;
    border:1px solid #cbd5e1;
    border-radius:12px;
    background:#fff;
    color:#334155;
    font-size:14px;
    font-weight:700;
    cursor:pointer;
}

.product-time-option.is-active{
    border-color:#2563eb;
    background:#eef2f7;
    color:#ffffff;
}

.product-list-group{
    margin-top:18px;
    border:1px dashed #e5e7eb;
    border-radius:22px;
    background:#fff;
    overflow:hidden;
}

.product-list-group + .product-list-group{
    margin-top:20px;
}

.product-list-head{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
    padding:18px 22px;
    background:#f8fafc;
    border-bottom:1px solid #e5e7eb;
}

.product-list-head h4{
    margin:0;
    font-size:21px;
    font-weight:700;
    letter-spacing:-.04em;
    color:#111827;
}

.product-list-head span{
    font-size:14px;
    font-weight:700;
    color:#64748b;
}

.product-row{
    display:grid;
   grid-template-columns:minmax(0,1fr) 170px 230px;
    align-items:center;
   gap:14px;
    min-height:92px;
   padding:16px 24px 16px 18px;
    border-bottom:1px solid #eef2f7;
    background:#fff;
    transition:background .16s ease, box-shadow .16s ease;
}

.product-row > *{
   min-width:0;
}

.product-row:last-child{
    border-bottom:0;
}

.product-row:hover{
    background:#f8fafc;
}

.product-row.is-selected{
    background:#eef2f7;
    box-shadow:inset 4px 0 0 #2563eb;
}

.product-row-title{
    display:flex;
    align-items:center;
    gap:10px;
    min-width:0;
}

.product-type-badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:46px;
    height:30px;
    padding:0 10px;
    border-radius:999px;
    background:#eff6ff;
    font-size:13px;
    font-weight:700;
    color:#2563eb;
    white-space:nowrap;
}

.product-row.is-selected .product-type-badge{
    background:#2563eb;
    color:#ffffff;
}

.product-row-title strong{
    display:block;
    font-size:21px;
    font-weight:700;
    letter-spacing:-.035em;
    color:#111827;
    white-space:nowrap;
}

.product-row-title em{
    font-style:normal;
    font-size:13px;
    font-weight:700;
    color:#64748b;
    white-space:nowrap;
}

.product-row-price{
    display:flex;
    align-items:baseline;
    justify-content:flex-end;
    gap:14px;
    text-align:right;
}

.product-row-price .normal-price{
    font-size:14px;
    font-weight:800;
    color:#94a3b8;
    text-decoration:line-through;
    white-space:nowrap;
}

.product-row-price strong{
    font-size:24px;
    font-weight:700;
    color:#2563eb;
    letter-spacing:-.04em;
    white-space:nowrap;
}

.product-row .qty-control{
    display:grid;
   grid-template-columns:34px minmax(42px,1fr) 34px;
   gap:5px;
}

.product-row .qty-control button{
   width:34px;
   height:36px;
    border:1px solid #cbd5e1;
    border-radius:12px;
    background:#f8fafc;
    color:#334155;
    font-size:18px;
    font-weight:700;
    cursor:pointer;
    transition:all .16s ease;
}

.product-row .qty-control button:hover{
    border-color:#2563eb;
    background:#eff6ff;
    color:#2563eb;
}

.product-row.is-selected .qty-control button{
    border-color:#15367f;
    background:#2563eb;
    color:#ffffff;
}

.product-row .qty-control input{
    width:100%;
   height:36px;
    border:1px solid #e5e7eb;
    border-radius:12px;
    background:#fff;
    text-align:center;
    font-size:15px;
    font-weight:700;
    color:#111827;
}

.product-sport-qty-list{
   display:grid;
   gap:9px;
}

.product-sport-qty{
   display:grid;
   grid-template-columns:68px minmax(0,1fr);
   align-items:center;
   gap:10px;
}

.product-sport-qty > span{
   display:flex;
   align-items:center;
   justify-content:center;
   min-height:34px;
   padding:0 6px;
   border-radius:10px;
   background:#eff6ff;
   color:#2563eb;
   font-size:12px;
   font-weight:700;
   white-space:nowrap;
}

.product-row.is-selected .product-sport-qty > span{
   background:#2563eb;
   color:#ffffff;
}

@media (max-width:767px){
    .product-time-notice{
        display:block;
    }

    .product-time-options{
        margin-top:12px;
    }

    .product-list-head{
        display:block;
        padding:16px 18px;
    }

    .product-list-head span{
        display:block;
        margin-top:6px;
    }

    .product-row{
        grid-template-columns:1fr;
        gap:12px;
        min-height:auto;
        padding:16px;
    }

    .product-row-price{
        justify-content:space-between;
        text-align:left;
    }

    .product-row .qty-control{
        width:100%;
        grid-template-columns:42px 1fr 42px;
    }

   .product-sport-qty-list{
      gap:8px;
   }

   .product-sport-qty{
      grid-template-columns:86px minmax(0,1fr);
   }

    .product-row .qty-control button,
    .product-row .qty-control input{
        height:42px;
    }
}

/* =========================================================
   Reservation Customer Form
========================================================= */

.reservation-form-box{
    padding:28px;
    border:1px solid #e5e7eb;
    border-radius:28px;
    background:#fff;
}

.reservation-form-grid{
    display:grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap:18px;
    margin-bottom:18px;
}

.form-field{
    display:block;
}

.form-field label{
    display:block;
    margin-bottom:9px;
    font-size:14px;
    font-weight:700;
    color:#111827;
    letter-spacing:-.03em;
}

.form-field label b{
    color:#2563eb;
}

.form-field input,
.form-field select,
.form-field textarea{
    width:100%;
    border:1px solid #d1d5db;
    border-radius:16px;
    background:#fff;
    color:#111827;
    font-size:15px;
    font-weight:700;
    outline:none;
    transition:border-color .16s ease, box-shadow .16s ease, background .16s ease;
    box-sizing:border-box;
}

.form-field input,
.form-field select{
    height:52px;
    padding:0 16px;
}

.form-field textarea{
    min-height:130px;
    padding:16px;
    line-height:1.55;
    resize:vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder{
    color:#9ca3af;
    font-weight:600;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus{
    border-color:#2563eb;
    box-shadow:0 0 0 4px rgba(255,107,0,.12);
    background:#fffaf7;
}

.form-field select{
    appearance:none;
    -webkit-appearance:none;
    background-image:
        linear-gradient(45deg, transparent 50%, #64748b 50%),
        linear-gradient(135deg, #64748b 50%, transparent 50%);
    background-position:
        calc(100% - 21px) 22px,
        calc(100% - 15px) 22px;
    background-size:6px 6px, 6px 6px;
    background-repeat:no-repeat;
    padding-right:44px;
}

.agree-check{
    display:flex;
    align-items:flex-start;
    gap:10px;
    margin-top:18px;
    padding:16px 18px;
    border:1px solid #e5e7eb;
    border-radius:18px;
    background:#f8fafc;
    cursor:pointer;
}

.agree-check input{
    width:18px;
    height:18px;
    margin-top:1px;
    accent-color:#2563eb;
    flex:0 0 auto;
}

.agree-check span{
    font-size:14px;
    font-weight:800;
    line-height:1.45;
    color:#475569;
}

/* =========================================================
   Reservation Confirm Box
========================================================= */

.reservation-confirm-box{
    padding:28px;
    border:1px solid #e5e7eb;
    border-radius:28px;
    background:#fff;
}

.confirm-summary{
    padding:22px;
    border:1px solid #e5e7eb;
    border-radius:22px;
    background:#f8fafc;
}

.confirm-summary + .confirm-summary{
    margin-top:18px;
}

.confirm-summary h4{
    margin:0 0 16px;
    font-size:19px;
    font-weight:700;
    color:#111827;
    letter-spacing:-.04em;
}

.confirm-summary dl{
    margin:0;
}

.confirm-summary dl div,
.confirm-summary dt,
.confirm-summary dd{
    margin:0;
}

.confirm-summary dl{
    display:grid;
    gap:10px;
}

.confirm-summary dt{
    font-size:13px;
    font-weight:700;
    color:#64748b;
}

.confirm-summary dd{
    margin-bottom:12px;
    font-size:16px;
    font-weight:700;
    color:#111827;
    word-break:keep-all;
}

.confirm-summary dd:last-child{
    margin-bottom:0;
}

.confirm-total{
    color:#2563eb !important;
    font-size:24px !important;
}

.confirm-notice{
    margin:18px 0 0;
    padding:16px 18px;
    border-radius:18px;
    background:#eef2f7;
    color:#9a3412;
    font-size:14px;
    font-weight:800;
    line-height:1.55;
}

/* =========================================================
   Mobile
========================================================= */

@media (max-width:900px){
    .reservation-form-grid{
        grid-template-columns:1fr;
    }
}

@media (max-width:767px){
    .reservation-form-box,
    .reservation-confirm-box{
        padding:20px;
        border-radius:22px;
    }

    .form-field input,
    .form-field select{
        height:50px;
    }

    .agree-check{
        padding:14px 15px;
    }

    .confirm-summary{
        padding:18px;
        border-radius:18px;
    }
}

/* =========================================================
   Reservation Complete Page
========================================================= */

.reservation-complete-page{
    padding:70px 0 90px;
    background:#f8fafc;
}

.complete-head{
    margin-bottom:26px;
}

.complete-kicker{
    margin:0 0 8px;
    font-size:14px;
    font-weight:700;
    color:#2563eb;
    letter-spacing:.04em;
}

.complete-head h2{
    margin:0 0 10px;
    font-size:36px;
    font-weight:700;
    color:#111827;
    letter-spacing:-.055em;
}

.complete-head p{
    margin:0;
    font-size:17px;
    font-weight:700;
    color:#64748b;
    line-height:1.6;
}

.complete-head p strong{
    color:#2563eb;
}

.complete-actions{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:30px;
}
.complete-actions .btn-next,
.complete-actions .btn-prev {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   text-align: center;
   line-height: 1;
}
.complete-layout{
    display:grid;
    grid-template-columns:minmax(0, 1fr) 320px;
    gap:30px;
    align-items:start;
}

.complete-card{
    padding:34px;
    border:1px solid #e5e7eb;
    border-radius:30px;
    background:#fff;
    box-shadow:0 24px 60px rgba(15,23,42,.08);
}

.complete-card-head{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:20px;
    padding-bottom:22px;
    border-bottom:3px solid #111827;
}

.complete-card-head p{
    margin:0 0 8px;
    font-size:13px;
    font-weight:700;
    color:#2563eb;
    letter-spacing:.05em;
}

.complete-card-head h3{
    margin:0;
    font-size:30px;
    font-weight:700;
    color:#111827;
    letter-spacing:-.055em;
}

.complete-card-head span{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    height:36px;
    padding:0 16px;
    border-radius:999px;
    background:#eef2f7;
    color:#ffffff;
    font-size:14px;
    font-weight:700;
}

.complete-code{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:16px;
    margin-top:22px;
    padding:18px 20px;
    border-radius:20px;
    background:#111827;
    color:rgba(255,255,255,.72);
    font-size:14px;
    font-weight:700;
}

.complete-code strong{
    color:#ffffff;
    font-size:22px;
    letter-spacing:-.03em;
}

.complete-info-grid{
    display:grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap:14px;
    margin-top:22px;
}

.complete-info-item{
    padding:18px;
    border:1px solid #e5e7eb;
    border-radius:20px;
    background:#f8fafc;
}

.complete-info-item span{
    display:block;
    margin-bottom:8px;
    font-size:13px;
    font-weight:700;
    color:#64748b;
}

.complete-info-item strong{
    display:block;
    font-size:17px;
    font-weight:700;
    color:#111827;
    word-break:keep-all;
}

.complete-memo{
    margin-top:18px;
    padding:20px;
    border-radius:20px;
    background:#eef2f7;
    border:1px solid #e5e7eb;
}

.complete-memo span{
    display:block;
    margin-bottom:8px;
    font-size:13px;
    font-weight:700;
    color:#000000;
}

.complete-memo p{
    margin:0;
    font-size:15px;
    font-weight:700;
    color:#000000;
    line-height:1.6;
}

.complete-items{
    margin-top:26px;
}

.complete-item-section{
    padding-top:22px;
    border-top:1px solid #e5e7eb;
}

.complete-item-section + .complete-item-section{
    margin-top:22px;
}

.complete-item-section h4{
    margin:0 0 14px;
    font-size:18px;
    font-weight:700;
    color:#111827;
    letter-spacing:-.04em;
}

.complete-item-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:18px;
    padding:13px 0;
    border-bottom:1px dashed #e5e7eb;
}

.complete-item-row:last-child{
    border-bottom:0;
}

.complete-item-row strong{
    display:block;
    margin-bottom:4px;
    font-size:16px;
    font-weight:700;
    color:#111827;
}

.complete-item-row span{
    display:block;
    font-size:13px;
    font-weight:800;
    color:#64748b;
}

.complete-item-row em{
    font-style:normal;
    font-size:18px;
    font-weight:700;
    color:#2563eb;
    white-space:nowrap;
}

.complete-total{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:18px;
    margin-top:28px;
    padding:24px 26px;
    border-radius:24px;
    background:linear-gradient(135deg,#111827,#1f2937);
}

.complete-total span{
    font-size:16px;
    font-weight:700;
    color:rgba(255,255,255,.72);
}

.complete-total strong{
    font-size:32px;
    font-weight:700;
    color:#ffffff;
    letter-spacing:-.045em;
    white-space:nowrap;
}

.complete-notice,
.complete-size-notice{
    margin:18px 0 0;
    padding:18px 20px;
    border-radius:20px;
    background:#f8fafc;
    color:#64748b;
    font-size:14px;
    font-weight:800;
    line-height:1.6;
}

.complete-size-notice{
    background:#eff6ff;
    color:#1e3a8a;
}

.complete-size-notice strong{
    display:block;
    margin-bottom:6px;
    font-size:15px;
    font-weight:700;
    color:#2563eb;
}

.complete-size-notice p{
    margin:0;
}

.complete-side{
    display:grid;
    gap:16px;
}

.complete-side-card{
    padding:22px;
    border:1px solid #e5e7eb;
    border-radius:24px;
    background:#fff;
    box-shadow:0 16px 44px rgba(15,23,42,.06);
}

.complete-side-card h4{
    margin:0 0 10px;
    font-size:18px;
    font-weight:700;
    color:#111827;
    letter-spacing:-.04em;
}

.complete-side-card p{
    margin:0;
    font-size:14px;
    font-weight:700;
    line-height:1.6;
    color:#64748b;
}

.complete-side-card p + p{
    margin-top:14px;
}

.complete-side-card strong{
    color:#111827;
    font-size:20px;
    font-weight:700;
}

@media (max-width:1100px){
    .complete-layout{
        grid-template-columns:1fr;
    }
}

@media (max-width:767px){
    .reservation-complete-page{
        padding:44px 0 70px;
    }

    .complete-head h2{
        font-size:30px;
    }

    .complete-actions{
        display:grid;
        grid-template-columns:1fr;
    }

    .complete-card{
        padding:22px;
        border-radius:24px;
    }

    .complete-card-head{
        display:block;
    }

    .complete-card-head span{
        margin-top:16px;
    }

    .complete-code{
        display:block;
    }

    .complete-code strong{
        display:block;
        margin-top:6px;
    }

    .complete-info-grid{
        grid-template-columns:1fr;
    }

    .complete-item-row{
        align-items:flex-start;
    }

    .complete-total{
        padding:22px 20px;
    }

    .complete-total strong{
        font-size:26px;
    }
}

.estimate-notice{
   margin:16px 0 0;
   padding:14px;
   border-radius:16px;
   background:#f8fafc;
   font-size:12px;
   line-height:1.55;
   color:#64748b;
}
/*
.empty-step-box{
   padding:60px 20px;
   border:1px dashed #cbd5e1;
   border-radius:22px;
   background:#f8fafc;
   text-align:center;
   font-size:15px;
   font-weight:800;
   color:#64748b;
}
*/
/* =========================================================
   Mobile
========================================================= */

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

   .estimate-panel{
      position:static;
   }
}

@media (max-width:767px){
   .reservation-page{
      padding:44px 16px 70px;
   }

   .reservation-head h2{
      font-size:28px;
   }

   .reservation-progress{
      display:flex;
      overflow-x:auto;
      padding-bottom:6px;
   }

   .progress-step{
      min-width:92px;
   }

   .reservation-step{
      padding:22px 18px;
      border-radius:22px;
   }

   .step-title h3{
      font-size:23px;
   }

   .calendar-card{
      padding:16px;
      border-radius:20px;
   }

   .reservation-calendar{
      gap:5px;
   }

   .calendar-day{
      min-height:58px;
      border-radius:14px;
      padding:7px;
   }

   .calendar-day .day-num{
      width:24px;
      height:24px;
      font-size:13px;
   }

   .calendar-day:after{
      left:7px;
      bottom:7px;
      font-size:10px;
   }

   .selected-date-box{
      grid-template-columns:1fr;
   }

   .estimate-total strong{
      font-size:24px;
   }
}

/* =========================================================
   Lift Select
========================================================= */

.lift-price-notice{
   display:flex;
   align-items:center;
   justify-content:space-between;
   gap:16px;
   margin-bottom:18px;
   padding:18px 20px;
   border-radius:20px;
   background:#eff6ff;
   border:1px solid #bfdbfe;
}

.lift-price-notice strong{
   font-size:18px;
   font-weight:700;
   color:#2563eb;
}

.lift-price-notice span{
   font-size:14px;
   font-weight:700;
   color:#475569;
}

.select-card{
   border:1px solid #e5e7eb;
   border-radius:24px;
   background:#fff;
   overflow:hidden;
}

.select-card + .select-card{
   margin-top:18px;
}

.select-card-head{
   display:flex;
   align-items:center;
   justify-content:space-between;
   padding:20px 22px;
   border-bottom:1px solid #e5e7eb;
   background:#f8fafc;
}

.select-card-head h4{
   margin:0;
   font-size:20px;
   font-weight:700;
   letter-spacing:-.035em;
   color:#111827;
}

.lift-grid{
   display:grid;
   grid-template-columns:repeat(2, minmax(0, 1fr));
   gap:14px;
   padding:18px;
}

.lift-card{
   border:1px solid #e5e7eb;
   border-radius:20px;
   padding:18px;
   background:#fff;
   transition:all .18s ease;
}

.lift-card.is-selected{
   border-color:#2563eb;
   background:#eef2f7;
   box-shadow:0 12px 30px rgba(255,107,0,.13);
}

.lift-card-main{
   display:flex;
   align-items:center;
   justify-content:space-between;
   gap:12px;
   margin-bottom:14px;
}

.lift-card-main strong{
   font-size:20px;
   font-weight:700;
   color:#111827;
}

.lift-card-main span{
   display:inline-flex;
   align-items:center;
   height:28px;
   padding:0 10px;
   border-radius:999px;
   background:#eff6ff;
   font-size:13px;
   font-weight:700;
   color:#2563eb;
}

.lift-card-price{
   margin-bottom:16px;
}

.lift-card-price .normal-price{
   display:block;
   margin-bottom:4px;
   font-size:13px;
   font-weight:800;
   color:#94a3b8;
   text-decoration:line-through;
}

.lift-card-price strong{
   display:block;
   font-size:24px;
   font-weight:700;
   color:#2563eb;
   letter-spacing:-.04em;
}

.qty-control{
   display:grid;
   grid-template-columns:42px 1fr 42px;
   gap:8px;
}

.qty-control button{
   width:42px;
   height:42px;
   border:0;
   border-radius:14px;
   background:#111827;
   color:#fff;
   font-size:20px;
   font-weight:700;
   cursor:pointer;
}

.qty-control input{
   width:100%;
   height:42px;
   border:1px solid #e5e7eb;
   border-radius:14px;
   text-align:center;
   font-size:16px;
   font-weight:700;
   color:#111827;
   background:#fff;
}

.step-actions-between{
   justify-content:space-between;
}

.btn-prev{
   min-width:130px;
   height:52px;
   border:1px solid #cbd5e1;
   border-radius:16px;
   background:#fff;
   color:#334155;
   font-size:16px;
   font-weight:700;
   cursor:pointer;
}

.estimate-item{
   display:flex;
   align-items:flex-start;
   justify-content:space-between;
   gap:12px;
   padding:4px 0;
}

.estimate-item span{
   font-size:14px;
   font-weight:800;
   color:#111827;
}

.estimate-item strong{
   font-size:14px;
   font-weight:700;
   color:#2563eb;
   white-space:nowrap;
}

@media (max-width:767px){
   .lift-price-notice{
      display:block;
   }

   .lift-price-notice span{
      display:block;
      margin-top:6px;
   }

   .lift-grid{
      grid-template-columns:1fr;
      padding:14px;
   }

   .lift-card{
      padding:16px;
   }
}

/* =========================================================
   Lift List Layout
========================================================= */

.lift-list-group{
   margin-top:18px;
   border:1px dashed #cbd5e1;
   border-radius:22px;
   background:#fff;
   overflow:hidden;
}

.lift-list-group + .lift-list-group{
   margin-top:20px;
}

.lift-list-head{
   display:flex;
   align-items:center;
   justify-content:space-between;
   gap:16px;
   padding:18px 22px;
   background:#f8fafc;
   border-bottom:1px solid #e5e7eb;
}

.lift-list-head h4{
   margin:0;
   font-size:21px;
   font-weight:700;
   letter-spacing:-.04em;
   color:#111827;
}

.lift-list-head span{
   font-size:14px;
   font-weight:700;
   color:#64748b;
}

.lift-list{
   display:block;
}

.lift-row{
   display:grid;
   grid-template-columns:220px 1fr 190px;
   align-items:center;
   gap:20px;
   padding:16px 20px;
   border-bottom:1px solid #eef2f7;
   background:#fff;
   transition:background .16s ease, box-shadow .16s ease;
}

.lift-row:last-child{
   border-bottom:0;
}

.lift-row:hover{
   background:#f8fafc;
}

.lift-row.is-selected{
   background:#eef2f7;
   box-shadow:inset 4px 0 0 #2563eb;
}

.lift-row-title{
   display:flex;
   align-items:center;
   gap:10px;
   min-width:0;
}

.lift-target-badge{
   display:inline-flex;
   align-items:center;
   justify-content:center;
   min-width:46px;
   height:30px;
   padding:0 10px;
   border-radius:999px;
   background:#eff6ff;
   font-size:13px;
   font-weight:700;
   color:#2563eb;
   white-space:nowrap;
}

.lift-row-title strong{
   display:block;
   font-size:20px;
   font-weight:700;
   letter-spacing:-.035em;
   color:#111827;
   white-space:nowrap;
}

.lift-row-price{
   display:flex;
   align-items:baseline;
   justify-content:flex-end;
   gap:14px;
   text-align:right;
}

.lift-row-price .normal-price{
   font-size:14px;
   font-weight:800;
   color:#94a3b8;
   text-decoration:line-through;
   white-space:nowrap;
}

.lift-row-price strong{
   font-size:24px;
   font-weight:700;
   color:#2563eb;
   letter-spacing:-.04em;
   white-space:nowrap;
}

.lift-row .qty-control{
   display:grid;
   grid-template-columns:38px 1fr 38px;
   gap:7px;
}

.lift-row .qty-control button{
   width:38px;
   height:38px;
   border:1px solid #cbd5e1;
   border-radius:12px;
   background:#f8fafc;
   color:#334155;
   font-size:18px;
   font-weight:700;
   cursor:pointer;
   transition:all .16s ease;
}

.lift-row .qty-control button:hover{
   border-color:#2563eb;
   background:#eff6ff;
   color:#2563eb;
}

.lift-row.is-selected .qty-control button{
   border-color:#15367f;
   background:#2563eb;
   color:#ffffff;
}

.lift-row .qty-control input{
   width:100%;
   height:38px;
   border:1px solid #e5e7eb;
   border-radius:12px;
   background:#fff;
   text-align:center;
   font-size:15px;
   font-weight:700;
   color:#111827;
}

@media (max-width:767px){
   .lift-list-head{
      display:block;
      padding:16px 18px;
   }

   .lift-list-head span{
      display:block;
      margin-top:6px;
   }

   .lift-row{
      grid-template-columns:1fr;
      gap:12px;
      padding:16px;
   }

   .lift-row-price{
      justify-content:space-between;
      text-align:left;
   }

   .lift-row .qty-control{
      grid-template-columns:42px 1fr 42px;
   }

   .lift-row .qty-control button,
   .lift-row .qty-control input{
      height:42px;
   }
}

/* =========================================================
   Lift List UI Refinement
========================================================= */

.lift-row{
   grid-template-columns:minmax(230px, 1.1fr) minmax(210px, .9fr) 180px;
   min-height:96px;
}

.lift-row-title{
   align-items:center;
}

.lift-row-title strong{
   font-size:21px;
}

.lift-row-price{
   justify-content:flex-end;
}

.lift-row .qty-control{
   align-self:center;
}

.lift-row-type,
.lift-type-badge{
   display:none !important;
}

.lift-target-badge{
   min-width:48px;
   height:30px;
   font-size:13px;
}

.lift-row.is-selected .lift-target-badge{
   background:#2563eb;
   color:#ffffff;
}

@media (max-width:767px){
   .lift-row{
      grid-template-columns:1fr;
      min-height:auto;
   }

   .lift-row-price{
      justify-content:space-between;
   }

   .lift-row .qty-control{
      width:100%;
   }
}
.lesson-day-badge{
   background:#eef5ff;
   color:#2f6eea;
}

.lesson-day-badge.is-weekend{
   background:#2f6eea;
   color:#fff;
}

.progress-step.is-available {
   cursor: pointer;
}

.progress-step.is-available:hover {
   border-color: #93c5fd;
   box-shadow: 0 14px 34px rgba(37, 99, 235, .12);
   transform: translateY(-1px);
}

.progress-step.is-disabled {
   cursor: not-allowed;
   opacity: .58;
}

.progress-step.is-disabled:hover {
   transform: none;
   box-shadow: 0 8px 22px rgba(15, 23, 42, .04);
}

/* =========================================================
   Conversational rental reservation
========================================================= */
.reservation-page:not(.is-progressed) .reservation-layout{grid-template-columns:minmax(0,1fr)}
.reservation-page:not(.is-progressed) .estimate-panel{display:none}
.reservation-page.is-progressed .reservation-head{display:none}
.rental-conversation-progress{margin:0 0 16px;padding:18px 20px;border:1px solid rgba(37,99,235,.2);border-radius:18px;background:linear-gradient(135deg,#fff,#eff6ff)}
.rental-conversation-progress-head{display:flex;align-items:center;justify-content:space-between;gap:18px;margin-bottom:11px}
.rental-conversation-progress-head>strong{color:var(--dark,#111827);font-size:17px;line-height:1.45}
.rental-conversation-progress-meta{display:flex;align-items:flex-end;flex:0 0 auto;flex-direction:column;color:var(--blue,#2563eb);font-weight:900;line-height:1.15}
.rental-conversation-progress-meta span{font-size:19px}
.rental-conversation-progress-meta small{margin-top:4px;font-size:13px}
.rental-conversation-progress-bar{overflow:hidden;height:8px;border-radius:999px;background:rgba(37,99,235,.12)}
.rental-conversation-progress-bar i{display:block;height:100%;border-radius:inherit;background:var(--blue,#2563eb);transition:width .32s ease}
.rental-question-copy{margin-bottom:28px;text-align:center}
.rental-question-copy p{margin:0 0 8px;color:var(--blue,#2563eb);font-size:14px;font-weight:900}
.rental-question-copy h3{margin:0;color:var(--dark,#111827);font-size:clamp(28px,3vw,38px);letter-spacing:-.045em}
.rental-question-copy span{display:block;margin-top:10px;color:var(--muted,#667085);font-size:15px;line-height:1.65}
.rental-service-options{display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:12px}
.rental-service-options label{position:relative;min-width:0;cursor:pointer}
.rental-service-options input{position:absolute;width:1px;height:1px;opacity:0;pointer-events:none}
.rental-service-options label>span{display:flex;align-items:center;flex-direction:column;justify-content:center;min-height:160px;padding:20px 12px;border:2px solid var(--line,#e5e7eb);border-radius:22px;background:#fff;text-align:center;transition:.18s ease}
.rental-service-options label:hover>span,.rental-service-options label.is-selected>span{border-color:var(--blue,#2563eb);background:var(--blue-soft,#eff6ff);box-shadow:0 14px 30px rgba(37,99,235,.12);transform:translateY(-2px)}
.rental-service-options strong{color:var(--dark,#111827);font-size:22px;letter-spacing:-.035em}
.rental-service-options small{display:block;margin-top:6px;color:var(--muted,#667085);font-size:12px;line-height:1.45}
.rental-lift-guide{margin:14px 0 0;color:var(--muted,#667085);font-size:13px;line-height:1.55;text-align:center}
[data-estimate-service][hidden]{display:none!important}

@media(max-width:900px){
   .rental-service-options{grid-template-columns:repeat(3,minmax(0,1fr))}
}

@media(max-width:767px){
   .reservation-page{padding:20px 14px 72px}
   .reservation-page .reservation-inner{width:100%}
   .reservation-head{margin-bottom:20px}
   .reservation-head h2{font-size:32px}
   .rental-conversation-progress{padding:15px 16px;border-radius:16px}
   .rental-conversation-progress-head{align-items:flex-start;gap:12px}
   .rental-conversation-progress-head>strong{font-size:16px}
   .rental-conversation-progress-meta span{font-size:19px}
   .reservation-page .reservation-step{overflow:visible;padding:0;border:0;border-radius:0;background:transparent;box-shadow:none}
   .reservation-page .reservation-step .step-title{display:none}
   .rental-question-copy{margin-bottom:20px;text-align:left}
   .rental-question-copy h3{font-size:27px;line-height:1.3}
   .rental-question-copy span{font-size:14px}
   .rental-service-options{grid-template-columns:repeat(2,minmax(0,1fr));gap:9px}
   .rental-service-options label:last-child{grid-column:1/-1}
   .rental-service-options label>span{min-height:118px;padding:15px 10px;border-radius:17px}
   .rental-service-options strong{font-size:20px}
   .rental-service-options small{font-size:11px}
   .rental-lift-guide{margin-top:12px;padding:0 5px;font-size:12px;text-align:left}
   .calendar-card{padding:0;border:0;border-radius:0;background:transparent;box-shadow:none}
   .calendar-top{padding:0 2px 12px}
   .calendar-day{min-height:48px}
   .estimate-panel{display:none!important}
   .step-actions,.step-actions.step-actions-between{position:sticky;z-index:30;bottom:0;display:grid;grid-template-columns:1fr;gap:8px;margin:22px -4px -4px;padding:9px 4px;background:rgba(255,255,255,.94);box-shadow:0 -8px 22px rgba(15,23,42,.08);backdrop-filter:blur(10px)}
   .step-actions.step-actions-between{grid-template-columns:minmax(86px,.65fr) minmax(0,1.35fr)}
   .step-actions .btn-prev,.step-actions .btn-next{width:100%;min-width:0;height:46px;border-radius:13px;font-size:15px}
   .lift-row,.product-row{padding:15px 12px}
   .lift-list-head h4,.product-list-head h4{font-size:19px}
   .form-field label{font-size:14px}
   .reservation-form-box input,.reservation-form-box select,.reservation-form-box textarea{font-size:16px}
}
