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

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

.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(var(--ml-primary-rgb), .14);
    border-radius:22px;
    background:linear-gradient(135deg,var(--ml-white),var(--ml-primary-soft));
    box-shadow:0 12px 34px rgba(var(--ml-shadow-rgb), .06);
}

.reservation-notice strong{
    flex:0 0 auto;
    color:var(--ml-primary);
    font-weight:700;
}

.reservation-notice span{
    color:var(--ml-text);
    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(--ml-line);
    border-radius:18px;
    background:var(--ml-white);
    color:var(--ml-muted);
    text-align:left;
    box-shadow:0 10px 26px rgba(var(--ml-shadow-rgb), .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(var(--ml-primary-rgb), .45);
    background:linear-gradient(135deg,var(--ml-primary),var(--ml-primary-deep));
    color:var(--ml-white);
    box-shadow:0 16px 36px rgba(var(--ml-primary-rgb), .24);
}

.reservation-progress button.is-done{
    color:var(--ml-primary);
    border-color:rgba(var(--ml-primary-rgb), .22);
    background:var(--ml-primary-soft);
}

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

.reservation-main,
.estimate-card{
    border:1px solid var(--ml-line);
    border-radius:28px;
    background:var(--ml-white);
    box-shadow:var(--ml-shadow);
}

.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(--ml-primary-soft);
    color:var(--ml-primary);
    font-size:13px;
    font-weight:700;
}

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

.step-head span{
    display:block;
    margin-top:10px;
    color:var(--ml-muted);
    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(--ml-line);
    background:var(--ml-white);
}

.date-input-card{
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    background:linear-gradient(135deg,var(--ml-white),var(--ml-surface-soft));
}

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

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

.date-result{
    background:linear-gradient(135deg,var(--ml-primary-soft),var(--ml-card-line));
    display:flex;
    flex-direction:column;
    justify-content:center;
}

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

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

.calendar-placeholder{
    display:flex;
    align-items:center;
    gap:18px;
    padding:22px;
    border-radius:24px;
    background:var(--ml-surface-soft);
    border:1px dashed var(--ml-connector);
}

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

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

.calendar-placeholder p{
    margin:0;
    color:var(--ml-muted);
    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(--ml-navy);
}

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

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

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

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

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

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

.chip.orange{
    background:var(--orange-soft);
    color:var(--orange);
}

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

.qty-control button{
   width:42px;
   height:42px;
   border:1px solid var(--ml-connector);
   border-radius:14px;
   background:var(--ml-surface-soft);
   color:var(--ml-text);
   font-size:20px;
   font-weight:700;
   cursor:pointer;
   transition:all .16s ease;
}

.qty-control button:hover{
   border-color:var(--ml-primary);
   background:var(--ml-primary-soft);
   color:var(--ml-primary);
}

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

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

   border-color:#fed7aa;
   background:var(--ml-card-line);
   color:var(--ml-primary);

}

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

   background:var(--ml-primary);
   color:var(--ml-white);

}

.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(--ml-navy);
    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(--ml-line);
    border-radius:16px;
    padding:15px 16px;
    outline:none;
    background:var(--ml-white);
    color:var(--ml-navy);
}

.customer-form input:focus,
.customer-form textarea:focus{
    border-color:rgba(var(--ml-primary-rgb), .55);
    box-shadow:0 0 0 4px rgba(var(--ml-primary-rgb), .08);
}

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

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

.final-guide{
    padding:22px;
    border-radius:22px;
    background:var(--ml-surface-soft);
    border:1px solid var(--ml-line);
}

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

.final-guide p{
    margin:0;
    color:var(--ml-text);
    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(--ml-line);
}



.btn-prev,
.btn-outline{
    background:var(--ml-white);
    color:var(--ml-navy);
    border:1px solid var(--ml-line);
}



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(--ml-primary);
    font-size:12px;
    font-weight:700;
    letter-spacing:.06em;
}

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

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

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

.estimate-row strong,
.estimate-block div{
    color:var(--ml-navy);
    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,var(--ml-dark),var(--ml-hero-mid));
    color:var(--ml-white);
}

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

.estimate-total strong{
    font-size:28px;
    color:var(--ml-white);
}

.estimate-notice{
    margin:14px 0 0;
    color:var(--ml-muted);
    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:var(--ml-white);
    color:var(--ml-dark);
    box-shadow:0 20px 60px rgba(var(--ml-shadow-rgb), .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 var(--ml-dark);
}

.print-brand span{
    color:var(--ml-primary);
    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:var(--ml-primary-soft);
    color:var(--ml-primary);
    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 var(--ml-line);
}

.print-list dt{
    color:var(--ml-muted);
    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:var(--ml-surface-soft);
    font-weight:800;
}

.print-total{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-top:18px;
    padding:22px;
    border-radius:18px;
    background:var(--ml-dark);
    color:var(--ml-white);
    font-weight:700;
}

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

.print-notice{
    margin:16px 0 0;
    color:var(--ml-muted);
    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:var(--ml-primary-soft);
    color:var(--ml-primary);
    font-weight:700;
}

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

.complete-head p:last-child{
    color:var(--ml-muted);
}

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

.empty-box{
    padding:60px 20px;
    border-radius:24px;
    background:var(--ml-white);
    text-align:center;
    color:var(--ml-muted);
    box-shadow:0 18px 50px rgba(var(--ml-shadow-rgb), .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:var(--ml-surface-soft);
   padding:70px 20px 90px;
   color:var(--ml-dark);
}

.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:var(--ml-primary);
}

.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:var(--ml-muted);
}

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

.progress-step{
   position:relative;
   padding:14px 10px;
   background:var(--ml-white);
   border:1px solid var(--ml-line);
   border-radius:16px;
   text-align:center;
   box-shadow:0 8px 22px rgba(var(--ml-shadow-rgb), .04);
}

.progress-step span{
   display:block;
   margin-bottom:4px;
   font-size:12px;
   font-weight:700;
   color:var(--ml-muted);
}

.progress-step strong{
   display:block;
   font-size:14px;
   font-weight:700;
   color:var(--ml-text);
}

.progress-step.is-active{
   border-color:var(--ml-primary);
   box-shadow:0 14px 34px rgba(var(--ml-primary-rgb), .16);
}

.progress-step.is-active span,
.progress-step.is-active strong{
   color:var(--ml-primary);
}

.progress-step.is-done{
   background:var(--ml-primary-soft);
   border-color:var(--ml-primary-pale);
}

.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:var(--ml-white);
   border:1px solid var(--ml-line);
   border-radius:28px;
   padding:30px;
   box-shadow:0 18px 50px rgba(var(--ml-shadow-rgb), .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:var(--ml-primary);
   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:var(--ml-muted);
}
@media (max-width: 640px) {
   .reservation-inner {
      padding: 72px 0;
   }
}
/* =========================================================
   Calendar
========================================================= */

.calendar-card{
   border:1px solid var(--ml-line);
   border-radius:24px;
   padding:22px;
   background:linear-gradient(180deg,var(--ml-white),var(--ml-surface-soft));
}

.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:var(--ml-dark);
   color:var(--ml-white);
   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:var(--ml-number-soft);
}

.calendar-guide span{
   display:inline-flex;
   align-items:center;
   gap:6px;
   font-size:13px;
   font-weight:800;
   color:var(--ml-text);
}

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

.cal-dot.selected{
   background:var(--ml-primary);
}

.cal-dot.today{
   background:var(--ml-primary);
}

.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:var(--ml-muted);
}

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

.calendar-week div:last-child{
   color:var(--ml-primary);
}

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

.calendar-day{
   position:relative;
   min-height:74px;
   border:1px solid var(--ml-line);
   border-radius:18px;
   background:var(--ml-white);
   cursor:pointer;
   text-align:left;
   padding:10px;
   transition:all .16s ease;
}

.calendar-day:hover{
   border-color:var(--ml-primary);
   box-shadow:0 10px 24px rgba(var(--ml-primary-rgb), .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:var(--ml-dark);
}

.calendar-day:after{

   display:none;

}

.calendar-day.is-other{
   background:var(--ml-surface-soft);
   cursor:default;
}

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

.calendar-day.is-past{
   background:var(--ml-surface-soft);
   color:var(--ml-date);
   cursor:not-allowed;
}

.calendar-day.is-past .day-num,
.calendar-day.is-season-disabled .day-num{
   color:var(--ml-date);
}

.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:var(--ml-line);
   background:var(--ml-number-soft);
   color:var(--ml-muted);
   cursor:not-allowed;
}

.calendar-day.is-season-disabled:hover{
   border-color:var(--ml-line);
   box-shadow:none;
   transform:none;
}

.calendar-day.is-today .day-num{
   background:var(--ml-primary);
   color:var(--ml-white);
}

.calendar-day.is-season-disabled.is-today .day-num{
   background:var(--ml-connector);
   color:var(--ml-white);
}

.calendar-day.is-selected{
   border-color:var(--ml-primary);
   background:var(--ml-primary-soft);
   box-shadow:0 14px 30px rgba(var(--ml-primary-rgb), .18);
}

.calendar-day.is-selected .day-num{
   background:var(--ml-primary);
   color:var(--ml-white);
}
.cal-dot.disabled{

   background:var(--ml-connector);

}



/* =========================================================
   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:var(--ml-primary-soft);
   border:1px solid var(--ml-primary-pale);
}

.selected-date-box span{
   display:block;
   margin-bottom:6px;
   font-size:13px;
   font-weight:700;
   color:var(--ml-primary);
}

.selected-date-box strong{
   display:block;
   font-size:20px;
   font-weight:700;
   color:var(--ml-dark);
}

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

.btn-next{
   min-width:190px;
   height:52px;
   border:0;
   border-radius:16px;
   background:var(--ml-primary);
   color:var(--ml-white);
   font-size:16px;
   font-weight:700;
   cursor:pointer;
   box-shadow:0 14px 26px rgba(var(--ml-shadow-rgb), .16);
}

.btn-next:disabled{
   background:var(--ml-connector);
   box-shadow:none;
   cursor:not-allowed;
}

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

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

.estimate-card{
   background:var(--ml-white);
   border:1px solid var(--ml-line);
   border-radius:28px;
   padding:24px;
   box-shadow:0 18px 50px rgba(var(--ml-shadow-rgb), .1);
}

.estimate-head{
   padding-bottom:18px;
   border-bottom:2px solid var(--ml-dark);
}

.estimate-head p{
   margin:0 0 6px;
   font-size:12px;
   font-weight:700;
   letter-spacing:.08em;
   color:var(--ml-connector);
}

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

.estimate-section{
   padding:18px 0;
   border-bottom:1px solid var(--ml-line);
}

.estimate-section label{
   display:block;
   margin-bottom:8px;
   font-size:13px;
   font-weight:700;
   color:var(--ml-muted);
}

.estimate-section strong,
.estimate-section div{
   font-size:15px;
   font-weight:800;
   color:var(--ml-dark);
   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,var(--ml-dark),var(--ml-hero-mid));
   color:var(--ml-white);
}

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

.estimate-total strong{
   flex:0 0 auto;
   padding-left:12px;
   font-size:30px;
   font-weight:700;
   color:var(--ml-white);
   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:var(--ml-surface-soft);
    border:1px solid var(--ml-line);
}

.product-time-notice strong{
    display:block;
    margin-bottom:4px;
    font-size:16px;
    font-weight:700;
    color:var(--ml-dark);
}

.product-time-notice span{
    display:block;
    font-size:15px;
    font-weight:700;
    color:var(--ml-primary);
}

.product-time-notice p{
    margin:0;
    font-size:14px;
    font-weight:700;
    color:var(--ml-muted);
}

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

.product-time-option{
    height:38px;
    padding:0 14px;
    border:1px solid var(--ml-connector);
    border-radius:12px;
    background:var(--ml-white);
    color:var(--ml-text);
    font-size:14px;
    font-weight:700;
    cursor:pointer;
}

.product-time-option.is-active{
    border-color:var(--ml-primary);
    background:var(--ml-card-line);
    color:var(--ml-white);
}

.product-list-group{
    margin-top:18px;
    border:1px dashed var(--ml-line);
    border-radius:22px;
    background:var(--ml-white);
    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:var(--ml-surface-soft);
    border-bottom:1px solid var(--ml-line);
}

.product-list-head h4{
    margin:0;
    font-size:21px;
    font-weight:700;
    letter-spacing:-.04em;
    color:var(--ml-dark);
}

.product-list-head span{
    font-size:14px;
    font-weight:700;
    color:var(--ml-muted);
}

.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 var(--ml-card-line);
    background:var(--ml-white);
    transition:background .16s ease, box-shadow .16s ease;
}

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

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

.product-row:hover{
    background:var(--ml-surface-soft);
}

.product-row.is-selected{
    background:var(--ml-card-line);
    box-shadow:inset 4px 0 0 var(--ml-primary);
}

.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:var(--ml-primary-soft);
    font-size:13px;
    font-weight:700;
    color:var(--ml-primary);
    white-space:nowrap;
}

.product-row.is-selected .product-type-badge{
    background:var(--ml-primary);
    color:var(--ml-white);
}

.product-row-title strong{
    display:block;
    font-size:21px;
    font-weight:700;
    letter-spacing:-.035em;
    color:var(--ml-dark);
    white-space:nowrap;
}

.product-row-title em{
    font-style:normal;
    font-size:13px;
    font-weight:700;
    color:var(--ml-muted);
    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:var(--ml-muted);
    text-decoration:line-through;
    white-space:nowrap;
}

.product-row-price strong{
    font-size:24px;
    font-weight:700;
    color:var(--ml-primary);
    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 var(--ml-connector);
    border-radius:12px;
    background:var(--ml-surface-soft);
    color:var(--ml-text);
    font-size:18px;
    font-weight:700;
    cursor:pointer;
    transition:all .16s ease;
}

.product-row .qty-control button:hover{
    border-color:var(--ml-primary);
    background:var(--ml-primary-soft);
    color:var(--ml-primary);
}

.product-row.is-selected .qty-control button{
    border-color:var(--ml-primary-deep);
    background:var(--ml-primary);
    color:var(--ml-white);
}

.product-row .qty-control input{
    width:100%;
   height:36px;
    border:1px solid var(--ml-line);
    border-radius:12px;
    background:var(--ml-white);
    text-align:center;
    font-size:15px;
    font-weight:700;
    color:var(--ml-dark);
}

.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:var(--ml-primary-soft);
   color:var(--ml-primary);
   font-size:12px;
   font-weight:700;
   white-space:nowrap;
}

.product-row.is-selected .product-sport-qty > span{
   background:var(--ml-primary);
   color:var(--ml-white);
}

@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 var(--ml-line);
    border-radius:28px;
    background:var(--ml-white);
}

.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:var(--ml-dark);
    letter-spacing:-.03em;
}

.form-field label b{
    color:var(--ml-primary);
}

.form-field input,
.form-field select,
.form-field textarea{
    width:100%;
    border:1px solid var(--ml-line);
    border-radius:16px;
    background:var(--ml-white);
    color:var(--ml-dark);
    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:var(--ml-date);
    font-weight:600;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus{
    border-color:var(--ml-primary);
    box-shadow:0 0 0 4px rgba(var(--orange-rgb), .12);
    background:var(--ml-primary-tint);
}

.form-field select{
    appearance:none;
    -webkit-appearance:none;
    background-image:
        linear-gradient(45deg, transparent 50%, var(--ml-muted) 50%),
        linear-gradient(135deg, var(--ml-muted) 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 var(--ml-line);
    border-radius:18px;
    background:var(--ml-surface-soft);
    cursor:pointer;
}

.agree-check input{
    width:18px;
    height:18px;
    margin-top:1px;
    accent-color:var(--ml-primary);
    flex:0 0 auto;
}

.agree-check span{
    font-size:14px;
    font-weight:800;
    line-height:1.45;
    color:var(--ml-text);
}

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

.reservation-confirm-box{
    padding:28px;
    border:1px solid var(--ml-line);
    border-radius:28px;
    background:var(--ml-white);
}

.confirm-summary{
    padding:22px;
    border:1px solid var(--ml-line);
    border-radius:22px;
    background:var(--ml-surface-soft);
}

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

.confirm-summary h4{
    margin:0 0 16px;
    font-size:19px;
    font-weight:700;
    color:var(--ml-dark);
    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:var(--ml-muted);
}

.confirm-summary dd{
    margin-bottom:12px;
    font-size:16px;
    font-weight:700;
    color:var(--ml-dark);
    word-break:keep-all;
}

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

.confirm-total{
    color:var(--ml-primary) !important;
    font-size:24px !important;
}

.confirm-notice{
    margin:18px 0 0;
    padding:16px 18px;
    border-radius:18px;
    background:var(--ml-card-line);
    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:var(--ml-surface-soft);
}

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

.complete-kicker{
    margin:0 0 8px;
    font-size:14px;
    font-weight:700;
    color:var(--ml-primary);
    letter-spacing:.04em;
}

.complete-head h2{
    margin:0 0 10px;
    font-size:36px;
    font-weight:700;
    color:var(--ml-dark);
    letter-spacing:-.055em;
}

.complete-head p{
    margin:0;
    font-size:17px;
    font-weight:700;
    color:var(--ml-muted);
    line-height:1.6;
}

.complete-head p strong{
    color:var(--ml-primary);
}

.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 var(--ml-line);
    border-radius:30px;
    background:var(--ml-white);
    box-shadow:0 24px 60px rgba(var(--ml-shadow-rgb), .08);
}

.complete-card-head{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:20px;
    padding-bottom:22px;
    border-bottom:3px solid var(--ml-dark);
}

.complete-card-head p{
    margin:0 0 8px;
    font-size:13px;
    font-weight:700;
    color:var(--ml-primary);
    letter-spacing:.05em;
}

.complete-card-head h3{
    margin:0;
    font-size:30px;
    font-weight:700;
    color:var(--ml-dark);
    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:var(--ml-card-line);
    color:var(--ml-white);
    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:var(--ml-dark);
    color:rgba(var(--ml-white-rgb), .72);
    font-size:14px;
    font-weight:700;
}

.complete-code strong{
    color:var(--ml-white);
    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 var(--ml-line);
    border-radius:20px;
    background:var(--ml-surface-soft);
}

.complete-info-item span{
    display:block;
    margin-bottom:8px;
    font-size:13px;
    font-weight:700;
    color:var(--ml-muted);
}

.complete-info-item strong{
    display:block;
    font-size:17px;
    font-weight:700;
    color:var(--ml-dark);
    word-break:keep-all;
}

.complete-memo{
    margin-top:18px;
    padding:20px;
    border-radius:20px;
    background:var(--ml-card-line);
    border:1px solid var(--ml-line);
}

.complete-memo span{
    display:block;
    margin-bottom:8px;
    font-size:13px;
    font-weight:700;
    color:var(--ml-black);
}

.complete-memo p{
    margin:0;
    font-size:15px;
    font-weight:700;
    color:var(--ml-black);
    line-height:1.6;
}

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

.complete-item-section{
    padding-top:22px;
    border-top:1px solid var(--ml-line);
}

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

.complete-item-section h4{
    margin:0 0 14px;
    font-size:18px;
    font-weight:700;
    color:var(--ml-dark);
    letter-spacing:-.04em;
}

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

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

.complete-item-row strong{
    display:block;
    margin-bottom:4px;
    font-size:16px;
    font-weight:700;
    color:var(--ml-dark);
}

.complete-item-row span{
    display:block;
    font-size:13px;
    font-weight:800;
    color:var(--ml-muted);
}

.complete-item-row em{
    font-style:normal;
    font-size:18px;
    font-weight:700;
    color:var(--ml-primary);
    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,var(--ml-dark),var(--ml-hero-mid));
}

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

.complete-total strong{
    font-size:32px;
    font-weight:700;
    color:var(--ml-white);
    letter-spacing:-.045em;
    white-space:nowrap;
}

.complete-notice,
.complete-size-notice{
    margin:18px 0 0;
    padding:18px 20px;
    border-radius:20px;
    background:var(--ml-surface-soft);
    color:var(--ml-muted);
    font-size:14px;
    font-weight:800;
    line-height:1.6;
}

.complete-size-notice{
    background:var(--ml-primary-soft);
    color:var(--ml-primary-deep);
}

.complete-size-notice strong{
    display:block;
    margin-bottom:6px;
    font-size:15px;
    font-weight:700;
    color:var(--ml-primary);
}

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

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

.complete-side-card{
    padding:22px;
    border:1px solid var(--ml-line);
    border-radius:24px;
    background:var(--ml-white);
    box-shadow:0 16px 44px rgba(var(--ml-shadow-rgb), .06);
}

.complete-side-card h4{
    margin:0 0 10px;
    font-size:18px;
    font-weight:700;
    color:var(--ml-dark);
    letter-spacing:-.04em;
}

.complete-side-card p{
    margin:0;
    font-size:14px;
    font-weight:700;
    line-height:1.6;
    color:var(--ml-muted);
}

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

.complete-side-card strong{
    color:var(--ml-dark);
    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:var(--ml-surface-soft);
   font-size:12px;
   line-height:1.55;
   color:var(--ml-muted);
}
/*
.empty-step-box{
   padding:60px 20px;
   border:1px dashed var(--ml-connector);
   border-radius:22px;
   background:var(--ml-surface-soft);
   text-align:center;
   font-size:15px;
   font-weight:800;
   color:var(--ml-muted);
}
*/
/* =========================================================
   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:var(--ml-primary-soft);
   border:1px solid var(--ml-primary-pale);
}

.lift-price-notice strong{
   font-size:18px;
   font-weight:700;
   color:var(--ml-primary);
}

.lift-price-notice span{
   font-size:14px;
   font-weight:700;
   color:var(--ml-text);
}

.select-card{
   border:1px solid var(--ml-line);
   border-radius:24px;
   background:var(--ml-white);
   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 var(--ml-line);
   background:var(--ml-surface-soft);
}

.select-card-head h4{
   margin:0;
   font-size:20px;
   font-weight:700;
   letter-spacing:-.035em;
   color:var(--ml-dark);
}

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

.lift-card{
   border:1px solid var(--ml-line);
   border-radius:20px;
   padding:18px;
   background:var(--ml-white);
   transition:all .18s ease;
}

.lift-card.is-selected{
   border-color:var(--ml-primary);
   background:var(--ml-card-line);
   box-shadow:0 12px 30px rgba(var(--orange-rgb), .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:var(--ml-dark);
}

.lift-card-main span{
   display:inline-flex;
   align-items:center;
   height:28px;
   padding:0 10px;
   border-radius:999px;
   background:var(--ml-primary-soft);
   font-size:13px;
   font-weight:700;
   color:var(--ml-primary);
}

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

.lift-card-price .normal-price{
   display:block;
   margin-bottom:4px;
   font-size:13px;
   font-weight:800;
   color:var(--ml-muted);
   text-decoration:line-through;
}

.lift-card-price strong{
   display:block;
   font-size:24px;
   font-weight:700;
   color:var(--ml-primary);
   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:var(--ml-dark);
   color:var(--ml-white);
   font-size:20px;
   font-weight:700;
   cursor:pointer;
}

.qty-control input{
   width:100%;
   height:42px;
   border:1px solid var(--ml-line);
   border-radius:14px;
   text-align:center;
   font-size:16px;
   font-weight:700;
   color:var(--ml-dark);
   background:var(--ml-white);
}

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

.btn-prev{
   min-width:130px;
   height:52px;
   border:1px solid var(--ml-connector);
   border-radius:16px;
   background:var(--ml-white);
   color:var(--ml-text);
   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:var(--ml-dark);
}

.estimate-item strong{
   font-size:14px;
   font-weight:700;
   color:var(--ml-primary);
   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 var(--ml-connector);
   border-radius:22px;
   background:var(--ml-white);
   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:var(--ml-surface-soft);
   border-bottom:1px solid var(--ml-line);
}

.lift-list-head h4{
   margin:0;
   font-size:21px;
   font-weight:700;
   letter-spacing:-.04em;
   color:var(--ml-dark);
}

.lift-list-head span{
   font-size:14px;
   font-weight:700;
   color:var(--ml-muted);
}

.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 var(--ml-card-line);
   background:var(--ml-white);
   transition:background .16s ease, box-shadow .16s ease;
}

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

.lift-row:hover{
   background:var(--ml-surface-soft);
}

.lift-row.is-selected{
   background:var(--ml-card-line);
   box-shadow:inset 4px 0 0 var(--ml-primary);
}

.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:var(--ml-primary-soft);
   font-size:13px;
   font-weight:700;
   color:var(--ml-primary);
   white-space:nowrap;
}

.lift-row-title strong{
   display:block;
   font-size:20px;
   font-weight:700;
   letter-spacing:-.035em;
   color:var(--ml-dark);
   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:var(--ml-muted);
   text-decoration:line-through;
   white-space:nowrap;
}

.lift-row-price strong{
   font-size:24px;
   font-weight:700;
   color:var(--ml-primary);
   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 var(--ml-connector);
   border-radius:12px;
   background:var(--ml-surface-soft);
   color:var(--ml-text);
   font-size:18px;
   font-weight:700;
   cursor:pointer;
   transition:all .16s ease;
}

.lift-row .qty-control button:hover{
   border-color:var(--ml-primary);
   background:var(--ml-primary-soft);
   color:var(--ml-primary);
}

.lift-row.is-selected .qty-control button{
   border-color:var(--ml-primary-deep);
   background:var(--ml-primary);
   color:var(--ml-white);
}

.lift-row .qty-control input{
   width:100%;
   height:38px;
   border:1px solid var(--ml-line);
   border-radius:12px;
   background:var(--ml-white);
   text-align:center;
   font-size:15px;
   font-weight:700;
   color:var(--ml-dark);
}

@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:var(--ml-primary);
   color:var(--ml-white);
}

@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:var(--ml-primary-soft);
   color:var(--ml-primary);
}

.lesson-day-badge.is-weekend{
   background:var(--ml-primary);
   color:var(--ml-white);
}

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

.progress-step.is-available:hover {
   border-color: var(--ml-primary-light);
   box-shadow: 0 14px 34px rgba(var(--ml-primary-rgb), .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(var(--ml-shadow-rgb), .04);
}
