#booking-form{
	
    --font-sans: inherit;
    --color-text-primary: #1a1a18;
    --color-text-secondary: #4a4a46;
    --color-text-tertiary: #888880;
    --color-background-primary: #ffffff;
    --color-background-secondary: #f8f7f4;
    --color-border-primary: #c8c7c0;
    --color-border-secondary: #a8a79e;
    --color-border-tertiary: #e0dfd8;
}#booking-form *{
	letter-spacing: normal !important;
}#booking-form{
	font-family: var(--font-sans);
    background: #f4f2ec;
    min-height: 100vh;
    padding: 32px 16px;
}#booking-form .page-header{
    text-align: center;
    margin-bottom: 32px;
}#booking-form .page-header h1{
    font-size: 26px;
    font-weight: 500;
    color: var(--color-text-primary);
    margin-bottom: 6px;
    letter-spacing: -0.02em;
}#booking-form .page-header p{
    font-size: 14px;
    color: var(--color-text-tertiary);
}#booking-form .form-card{
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    max-width: 620px;
    margin: 0 auto;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}#booking-form .wrap{
    max-width: 580px;
    margin: 0 auto;
    font-family: var(--font-sans);
}#booking-form h2{
    font-size: 20px;
    font-weight: 500;
    color: var(--color-text-primary);
    margin-bottom: 6px;
}#booking-form h3{
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text-primary);
    margin-bottom: 6px;
}#booking-form .sub{
    font-size: 14px;
    color: var(--color-text-secondary);
    margin-bottom: 22px;
    line-height: 1.5;
}#booking-form .progress{
    display: flex;
    gap: 6px;
    margin-bottom: 8px;
}#booking-form .pip{
    height: 4px;
    flex: 1;
    border-radius: 2px;
    background: var(--color-border-tertiary);
    transition: background 0.3s;
}#booking-form .pip.done{
    background: #1d9e75;
}#booking-form .pip.active{
    background: #7f77dd;
}#booking-form .progress-label{
    font-size: 11px;
    color: var(--color-text-tertiary);
    margin-bottom: 22px;
}#booking-form .step{
    display: none;
}#booking-form .step.active{
    display: block;
}#booking-form .type-badge{
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 18px;
}#booking-form .type-corporate{
    background: #e6f1fb;
    color: #0c447c;
}#booking-form .type-family{
    background: #eeedfe;
    color: #3c3489;
}#booking-form .type-hens{
    background: #fbeaf0;
    color: #72243e;
}#booking-form .type-special{
    background: #faeeda;
    color: #633806;
}#booking-form .type-facilitator{
    background: #e1f5ee;
    color: #085041;
}#booking-form .cards{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 22px;
}#booking-form .card{
    border: 1.5px solid var(--color-border-tertiary);
    border-radius: 12px;
    padding: 14px 12px;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
}#booking-form .card:hover{
    border-color: var(--color-border-secondary);
}#booking-form .card.sel{
    border-color: #534ab7;
    background: #eeedfe;
}#booking-form .card-icon{
    font-size: 20px;
    margin-bottom: 6px;
}#booking-form .card-label{
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text-primary);
    line-height: 1.3;
}#booking-form .card-desc{
    font-size: 11px;
    color: var(--color-text-tertiary);
    margin-top: 3px;
    line-height: 1.3;
}#booking-form .field{
    margin-bottom: 16px;
}#booking-form label{
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text-secondary);
    margin-bottom: 6px;
}#booking-form input,
#booking-form textarea{
    width: 100%;
    padding: 10px 12px;
    border: 1.5px solid var(--color-border-tertiary);
    border-radius: 8px;
    font-size: 14px;
    color: var(--color-text-primary);
    background: var(--color-background-primary);
    font-family: var(--font-sans);
    transition: border-color 0.2s;
    outline: none;
}#booking-form input:focus,
#booking-form textarea:focus{
    border-color: #534ab7;
}#booking-form textarea{
    resize: vertical;
    min-height: 80px;
}#booking-form .row{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}#booking-form .row3{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
}#booking-form .chips{
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px;
}#booking-form .chip{
    padding: 6px 14px;
    border: 1.5px solid var(--color-border-tertiary);
    border-radius: 20px;
    font-size: 13px;
    cursor: pointer;
    color: var(--color-text-secondary);
    transition: all 0.2s;
    background: transparent;
    font-family: var(--font-sans);
}#booking-form .chip:hover{
    border-color: var(--color-border-secondary);
    color: var(--color-text-primary);
}#booking-form .chip.sel{
    border-color: #534ab7;
    background: #eeedfe;
    color: #3c3489;
}#booking-form .hint{
    font-size: 12px;
    color: var(--color-text-tertiary);
    margin-top: 5px;
    line-height: 1.4;
}#booking-form .divider{
    border: none;
    border-top: 1px solid var(--color-border-tertiary);
    margin: 20px 0;
}#booking-form .section-heading{
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 12px;
}#booking-form .info-band{
    border: 1.5px solid var(--color-border-tertiary);
    border-radius: 10px;
    padding: 14px 16px;
    margin-bottom: 16px;
    background: var(--color-background-secondary);
}#booking-form .info-band p{
    font-size: 13px;
    color: var(--color-text-secondary);
    line-height: 1.5;
}#booking-form .info-band strong{
    color: var(--color-text-primary);
}#booking-form .notice{
    border-radius: 8px;
    padding: 11px 14px;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 10px;
}#booking-form .notice-amber{
    background: #faeeda;
    color: #633806;
    border: 1px solid #fac775;
}#booking-form .notice-blue{
    background: #e6f1fb;
    color: #0c447c;
    border: 1px solid #b5d4f4;
}#booking-form .notice-green{
    background: #e1f5ee;
    color: #085041;
    border: 1px solid #9fe1cb;
}#booking-form .notice-purple{
    background: #eeedfe;
    color: #3c3489;
    border: 1px solid #c4c1f0;
}#booking-form .bed-option{
    border: 1.5px solid var(--color-border-tertiary);
    border-radius: 10px;
    padding: 14px 16px;
    cursor: pointer;
    transition: all 0.2s;
    margin-bottom: 8px;
}#booking-form .bed-option:hover{
    border-color: var(--color-border-secondary);
}#booking-form .bed-option.sel{
    border-color: #534ab7;
    background: #eeedfe;
}#booking-form .bed-option-title{
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text-primary);
    margin-bottom: 3px;
}#booking-form .bed-option-desc{
    font-size: 12px;
    color: var(--color-text-secondary);
    line-height: 1.4;
}#booking-form .toggle-row{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    padding: 12px 14px;
    border: 1.5px solid var(--color-border-tertiary);
    border-radius: 10px;
    background: var(--color-background-secondary);
    cursor: pointer;
    transition: all 0.2s;
}#booking-form .toggle-row:hover{
    border-color: var(--color-border-secondary);
}#booking-form .toggle-row.on{
    border-color: #1d9e75;
    background: #e1f5ee;
}#booking-form .toggle-row.on .toggle-label{
    color: #085041;
}#booking-form .toggle-row.on .toggle-price{
    color: #0f6e56;
	display: none;
}#booking-form .toggle-label{
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text-primary);
    flex: 1;
}#booking-form .toggle-sub{
    font-size: 11px;
    color: var(--color-text-tertiary);
    display: block;
    margin-top: 2px;
}#booking-form .toggle-price{
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text-tertiary);
    margin-right: 10px;
    flex-shrink: 0;
	display: none;
}#booking-form .toggle-switch{
    width: 36px;
    height: 20px;
    border-radius: 10px;
    background: var(--color-border-tertiary);
    position: relative;
    transition: background 0.2s;
    flex-shrink: 0;
}#booking-form .toggle-switch.on{
    background: #1d9e75;
}#booking-form .toggle-switch::after{
    content: "";
    position: absolute;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #fff;
    top: 3px;
    left: 3px;
    transition: left 0.2s;
}#booking-form .toggle-switch.on::after{
    left: 19px;
}#booking-form .ctrl-row{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    padding: 12px 14px;
    border: 1.5px solid var(--color-border-tertiary);
    border-radius: 10px;
    background: var(--color-background-secondary);
}#booking-form .ctrl-row label{
    font-size: 13px;
    color: var(--color-text-primary);
    font-weight: 500;
    flex: 1;
    margin-bottom: 0;
}#booking-form .ctrl-btns{
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}#booking-form .g-btn{
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1.5px solid var(--color-border-tertiary);
    background: var(--color-background-primary);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-secondary);
    transition: all 0.2s;
    font-family: var(--font-sans);
    line-height: 1;
}#booking-form .g-btn:hover{
    border-color: #534ab7;
    color: #534ab7;
}#booking-form .g-count{
    font-size: 16px;
    font-weight: 500;
    color: var(--color-text-primary);
    min-width: 28px;
    text-align: center;
}#booking-form .days-nav{
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}#booking-form .day-tab{
    padding: 7px 14px;
    border-radius: 20px;
    border: 1.5px solid var(--color-border-tertiary);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    color: var(--color-text-secondary);
    transition: all 0.2s;
    background: transparent;
    font-family: var(--font-sans);
}#booking-form .day-tab.active{
    border-color: #534ab7;
    background: #eeedfe;
    color: #3c3489;
}#booking-form .day-tab.complete{
    border-color: #1d9e75;
    background: #e1f5ee;
    color: #085041;
}#booking-form .meal-section{
    margin-bottom: 24px;
}#booking-form .meal-heading{
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-primary);
    margin-bottom: 3px;
}#booking-form .meal-sub{
    font-size: 12px;
    color: var(--color-text-tertiary);
    margin-bottom: 10px;
}#booking-form .tier-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 7px;
}#booking-form .tier{
    border: 1.5px solid var(--color-border-tertiary);
    border-radius: 10px;
    padding: 11px 9px;
    cursor: pointer;
    transition: all 0.2s;
}#booking-form .tier:hover{
    border-color: var(--color-border-secondary);
}#booking-form .tier.sel-b{
    border-color: #854f0b;
    background: #faeeda;
}#booking-form .tier.sel-l{
    border-color: #0f6e56;
    background: #e1f5ee;
}#booking-form .tier.sel-d{
    border-color: #534ab7;
    background: #eeedfe;
}#booking-form .self-tier{
    border: 1.5px dashed var(--color-border-tertiary);
    border-radius: 10px;
    padding: 11px 9px;
    cursor: pointer;
    transition: all 0.2s;
}#booking-form .self-tier:hover{
    border-color: var(--color-border-secondary);
}#booking-form .self-tier.sel-self{
    border-color: #888780;
    background: #f1efe8;
    border-style: solid;
}#booking-form .tier-label{
    font-size: 9px;
    font-weight: 500;
    color: var(--color-text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 5px;
}#booking-form .tier-price{
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text-primary);
    margin-bottom: 3px;
	display:none;
}#booking-form .tier-name{
    font-size: 11px;
    font-weight: 500;
    color: var(--color-text-primary);
    margin-bottom: 2px;
    line-height: 1.3;
}#booking-form .tier-desc{
    font-size: 10px;
    color: var(--color-text-tertiary);
    line-height: 1.3;
}#booking-form .tier.sel-b .tier-name,
#booking-form .tier.sel-b .tier-price,
#booking-form .tier.sel-b .tier-label{
    color: #633806;
}#booking-form .tier.sel-b .tier-desc{
    color: #854f0b;
}#booking-form .tier.sel-l .tier-name,
#booking-form .tier.sel-l .tier-price,
#booking-form .tier.sel-l .tier-label{
    color: #085041;
}#booking-form .tier.sel-l .tier-desc{
    color: #0f6e56;
}#booking-form .tier.sel-d .tier-name,
#booking-form .tier.sel-d .tier-price,
#booking-form .tier.sel-d .tier-label{
    color: #3c3489;
}#booking-form .tier.sel-d .tier-desc{
    color: #534ab7;
}#booking-form .self-tier .tier-name{
    color: var(--color-text-secondary);
    font-size: 11px;
    font-weight: 500;
}#booking-form .self-tier.sel-self .tier-name{
    color: #444441;
}#booking-form .self-tier .tier-desc{
    color: var(--color-text-tertiary);
    font-size: 10px;
}#booking-form .na-band{
    padding: 12px;
    border-radius: 8px;
    background: var(--color-background-secondary);
    border: 1.5px solid var(--color-border-tertiary);
    font-size: 12px;
    color: var(--color-text-tertiary);
    text-align: center;
}#booking-form .meal-total-bar{
    background: var(--color-background-secondary);
    border: 1.5px solid var(--color-border-tertiary);
    border-radius: 10px;
    padding: 12px 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
	display:none;
}#booking-form .meal-total-bar span{
    font-size: 13px;
    color: var(--color-text-secondary);
}#booking-form .meal-total-bar strong{
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text-primary);
}#booking-form .activity-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}#booking-form .act-card{
    border: 1.5px solid var(--color-border-tertiary);
    border-radius: 10px;
    padding: 11px 12px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 10px;
}#booking-form .act-card:hover{
    border-color: var(--color-border-secondary);
}#booking-form .act-card.sel{
    border-color: #534ab7;
    background: #eeedfe;
}#booking-form .act-icon{
    font-size: 16px;
    flex-shrink: 0;
}#booking-form .act-name{
    font-size: 12px;
    font-weight: 500;
    color: var(--color-text-primary);
}#booking-form .act-price{
    font-size: 11px;
    color: var(--color-text-tertiary);
    margin-top: 1px;
	display:none;
}#booking-form .act-card.sel .act-name{
    color: #3c3489;
}#booking-form .strat-card{
    border: 1.5px solid #b5d4f4;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 16px;
}#booking-form .strat-card-header{
    background: #185fa5;
    padding: 12px 16px;
}#booking-form .strat-card-header-title{
    font-size: 13px;
    font-weight: 500;
    color: #e6f1fb;
    margin-bottom: 2px;
}#booking-form .strat-card-header-sub{
    font-size: 11px;
    color: #85b7eb;
}#booking-form .strat-card-body{
    padding: 14px 16px;
    background: var(--color-background-secondary);
}#booking-form .strat-card-body p{
    font-size: 13px;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: 10px;
}#booking-form .strat-cred{
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}#booking-form .strat-cred-pill{
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 11px;
    background: #e6f1fb;
    color: #0c447c;
    border: 1px solid #b5d4f4;
}#booking-form .strat-options{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}#booking-form .strat-option{
    border: 1.5px solid var(--color-border-tertiary);
    border-radius: 8px;
    padding: 12px;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
}#booking-form .strat-option:hover{
    border-color: var(--color-border-secondary);
}#booking-form .strat-option.sel{
    border-color: #185fa5;
    background: #e6f1fb;
}#booking-form .strat-option-title{
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text-primary);
    margin-bottom: 3px;
}#booking-form .strat-option-desc{
    font-size: 11px;
    color: var(--color-text-tertiary);
}#booking-form .express-card{
    border: 1.5px solid #5dcaa5;
    border-radius: 12px;
    padding: 16px;
    background: #e1f5ee;
    margin-bottom: 16px;
}#booking-form .express-card p{
    font-size: 14px;
    color: #085041;
    line-height: 1.6;
}#booking-form .estimate-box{
    border: 1.5px solid var(--color-border-tertiary);
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 16px;
	display:none;
}

#s6 h2,
#s6 .sub,
#s6 .notice.notice-green,
#s6 .notice.notice-purple,
#s6 hr {
    display: none;
}


#booking-form .estimate-header{
    background: #534ab7;
    padding: 14px 16px;
}#booking-form .estimate-header h3{
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 2px;
}#booking-form .estimate-header p{
    font-size: 11px;
    color: #c4c1f0;
}#booking-form .estimate-body{
    padding: 14px 16px;
}#booking-form .line-group{
    margin-bottom: 12px;
}#booking-form .line-group-title{
    font-size: 10px;
    font-weight: 500;
    color: var(--color-text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 6px;
}#booking-form .line{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    font-size: 12px;
    padding: 5px 0;
    border-bottom: 1px solid var(--color-border-tertiary);
    gap: 10px;
}#booking-form .line:last-child{
    border-bottom: none;
}#booking-form .line-label{
    color: var(--color-text-secondary);
    flex: 1;
    line-height: 1.4;
}#booking-form .line-val{
    font-weight: 500;
    color: var(--color-text-primary);
    flex-shrink: 0;
}#booking-form .subtotal-line,
#booking-form .gst-line{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 16px;
    font-size: 13px;
}#booking-form .subtotal-line{
    border-top: 1px solid var(--color-border-tertiary);
}#booking-form .total-line{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: var(--color-background-secondary);
    border-top: 1.5px solid var(--color-border-tertiary);
}#booking-form .total-line-label{
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-primary);
}#booking-form .total-line-amount{
    font-size: 20px;
    font-weight: 500;
    color: #534ab7;
}#booking-form .pp-line{
    display: flex;
    justify-content: flex-end;
    padding: 5px 16px 12px;
    background: var(--color-background-secondary);
}#booking-form .pp-line span{
    font-size: 11px;
    color: var(--color-text-tertiary);
}#booking-form .inclusions-band{
    background: #f7f5ee;
    border-top: 1.5px solid #e0dac8;
    padding: 12px 16px;
}#booking-form .inclusions-band-title{
    font-size: 10px;
    font-weight: 500;
    color: #5f5344;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 8px;
}#booking-form .inclusions-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
}#booking-form .inclusion-item{
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #5f5344;
}#booking-form .inclusion-dot{
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #b5956a;
    flex-shrink: 0;
}#booking-form .inclusions-pill{
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 6px;
}#booking-form .incl-pill{
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    background: var(--color-background-secondary);
    border: 1px solid var(--color-border-tertiary);
    color: var(--color-text-secondary);
}#booking-form .confirm{
    text-align: center;
    padding: 8px 0;
}#booking-form .confirm-icon{
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #e1f5ee;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}#booking-form .tick{
    width: 26px;
    height: 26px;
    stroke: #0f6e56;
    stroke-width: 2.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}#booking-form .next-steps{
    border: 1.5px solid var(--color-border-tertiary);
    border-radius: 12px;
    padding: 16px;
    text-align: left;
    max-width: 400px;
    margin: 0 auto 16px;
}#booking-form .btns{
    display: flex;
    gap: 10px;
    margin-top: 12px;
}#booking-form .btn{
    padding: 11px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    font-family: var(--font-sans);
    transition: opacity 0.15s;
}#booking-form .btn-primary{
    background: #534ab7;
	/*color: #fff; */
	color: var(--color-text-secondary);
}#booking-form .btn-primary:hover{
    opacity: 0.88;
}#booking-form .btn-ghost{
    background: transparent;
    border: 1.5px solid var(--color-border-tertiary);
    color: var(--color-text-secondary);
}#booking-form .btn-ghost:hover{
    border-color: var(--color-border-secondary);
}#booking-form .info-note{
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 11px 13px;
    border-radius: 10px;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 10px;
}#booking-form .info-note-chef{
    background: #e6f1fb;
    border: 1px solid #b5d4f4;
    color: #0c447c;
}#booking-form .info-note-diet{
    background: #e1f5ee;
    border: 1px solid #9fe1cb;
    color: #085041;
}#booking-form .info-note-icon{
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 1px;
}#booking-form .summary-row{
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 7px;
    background: var(--color-background-secondary);
    margin-bottom: 5px;
	display:none;
}#booking-form .none-pill{
    display: inline-block;
    padding: 2px 7px;
    border-radius: 10px;
    font-size: 10px;
    background: var(--color-background-secondary);
    color: var(--color-text-tertiary);
    border: 1px solid var(--color-border-tertiary);
}#booking-form .self-pill{
    display: inline-block;
    padding: 2px 7px;
    border-radius: 10px;
    font-size: 10px;
    background: #f1efe8;
    color: #5f5e5a;
    border: 1px solid #d3d1c7;
}#booking-form .review-banner{
    background: #fff8e6;
    border: 1px solid #f5d87a;
    border-radius: 10px;
    padding: 12px 16px;
    margin-bottom: 24px;
    font-size: 13px;
    color: #7a5500;
    text-align: center;
}#booking-form .sharing-card{
    border: 1.5px solid var(--color-border-tertiary);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.2s;
}#booking-form .sharing-card:hover{
    border-color: var(--color-border-secondary);
}#booking-form .sharing-card.sel{
    border-color: #534ab7;
}#booking-form .sharing-card-hdr{
    padding: 9px 13px;
    font-size: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 7px;
    background: var(--color-background-secondary);
    color: var(--color-text-secondary);
}#booking-form .sharing-card.sel .sharing-card-hdr{
    background: #eeedfe;
    color: #3c3489;
}#booking-form .sharing-card-body{
    padding: 9px 13px;
    border-top: 1px solid var(--color-border-tertiary);
}#booking-form .sharing-row{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3px;
}#booking-form .sharing-row:last-child{
    margin-bottom: 0;
}#booking-form .sharing-lbl{
    font-size: 11px;
    color: var(--color-text-secondary);
}#booking-form .sharing-val{
    font-size: 12px;
    font-weight: 500;
    color: var(--color-text-primary);
}#booking-form .sharing-card.sel .sharing-val{
    color: #3c3489;
}#booking-form .capacity-pill{
    display: inline-flex;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    background: #e1f5ee;
    color: #085041;
    border: 1px solid #9fe1cb;
    margin-bottom: 6px;
}#booking-form .budget-chip{
    border: 1.5px solid var(--color-border-tertiary);
    border-radius: 10px;
    padding: 11px 14px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text-secondary);
    transition: all 0.2s;
    text-align: center;
    background: var(--color-background-secondary);
}#booking-form .budget-chip:hover{
    border-color: var(--color-border-secondary);
    color: var(--color-text-primary);
}#booking-form .budget-chip.sel{
    border-color: #534ab7;
    background: #eeedfe;
    color: #3c3489;
}#booking-form .budget-feedback-over{
    border-radius: 10px;
    padding: 13px 15px;
    background: #e1f5ee;
    border: 1.5px solid #9fe1cb;
    font-size: 13px;
    color: #085041;
    line-height: 1.6;
}#booking-form .budget-feedback-under{
    border-radius: 10px;
    padding: 13px 15px;
    background: #faeeda;
    border: 1.5px solid #fac775;
    font-size: 13px;
    color: #633806;
    line-height: 1.6;
}#booking-form .budget-feedback-match{
    border-radius: 10px;
    padding: 13px 15px;
    background: #eeedfe;
    border: 1.5px solid #c4c1f0;
    font-size: 13px;
    color: #3c3489;
    line-height: 1.6;
}#booking-form .dial-preset{
    padding: 6px 14px;
    border-radius: 20px;
    border: 1.5px solid var(--color-border-tertiary);
    background: transparent;
    font-size: 12px;
    font-weight: 500;
    color: var(--color-text-secondary);
    cursor: pointer;
    font-family: var(--font-sans);
    transition: all 0.2s;
}#booking-form .dial-preset:hover{
    border-color: #534ab7;
    color: #534ab7;
}#booking-form .dial-preset.active{
    border-color: #534ab7;
    background: #eeedfe;
    color: #3c3489;
}#booking-form .room-block{
    border-radius: 8px;
    padding: 9px 11px;
}#booking-form .room-block-kings{
    background: #eeedfe;
    border: 1px solid #c4c1f0;
}#booking-form .room-block-tepees{
    background: #faeeda;
    border: 1px solid #fac775;
}#booking-form .room-block-none{
    background: var(--color-background-secondary);
    border: 1px solid var(--color-border-tertiary);
}#booking-form .room-block-title{
    font-size: 12px;
    font-weight: 500;
    color: var(--color-text-primary);
    margin-bottom: 2px;
}#booking-form .room-block-detail{
    font-size: 11px;
    color: var(--color-text-secondary);
    line-height: 1.4;
}#booking-form .room-block-none .room-block-title,
#booking-form .room-block-none .room-block-detail{
    color: var(--color-text-tertiary);
}#booking-form input[type="radio"],
#booking-form input[type="checkbox"],
#booking-form .card input[type="radio"],
#booking-form .strat-option>input[type="radio"],
#booking-form .chips>input[type="radio"],
#booking-form .sharing-card>input[type="radio"]{
    display: none !important;
}


@media (max-width: 768px) {
  	#booking-form .btns, #booking-form .ctrl-row{
		display: grid !important;
	}
	
	#booking-form .row3 {
		display: block !important;
	}
	#booking-form .g-btn{
		width:30px !important;
		height:auto !important;
	}
	#booking-form .tier-grid {    
    	grid-template-columns: repeat(2, 1fr) !important;
	}
}
