body {
    font-family: "Barlow Semi Condensed", sans-serif;
    font-weight: 500;
    font-style: normal;
    min-height:100vh; 
    background:#fff url('pexels-pixabay-327412.jpg') no-repeat top center; background-size:cover;
}

#root {padding:2rem 0; margin:0 auto; max-width:1280px;}

h1 {padding:0 0 0.75rem; text-transform:uppercase; font-size:5rem; line-height:1; font-weight:800; text-align:center; letter-spacing:0.25rem;}
h2 {font-size:2rem; line-height:1; font-weight:600; text-align:center;}

#steps {position:relative; padding:3.5rem 0;}
#steps ol {display:flex; margin:0 auto; padding:0; max-width:600px; list-style:none; text-align:center;}
#steps ol li {position:relative; flex-grow:1; text-transform:uppercase; font-size:0.75rem;}
#steps ol li::before {content:""; position:absolute; top:-1.5rem; left:calc(50% - 0.5rem); width:1rem; height:1rem; border-radius:1rem; border:2px solid transparent; box-shadow:0 0 0 2px #000;}
#steps ol li.active::before {background:#000; border-color:#fff;}
#steps ol li.complete::before {background:#000; border-color:#000;}

#booking {margin:0 auto; padding:2rem; width:1000px; min-height:600px; border-radius:2rem; background:rgba(255,255,255,0.75); backdrop-filter: blur(8px); box-shadow:0 4px 4px rgba(0,0,0,0.25);}
#booking ul.choice {padding:2rem 0 0; list-style:none;}
#booking ul.choice li {display:inline-block; margin:0.5rem; width:calc(22.25% - 2.5rem); height:100px; background:#fff; border-radius:0.5rem; text-align:center; cursor:pointer; box-shadow:0 2px 4px rgba(0,0,0,0.1); transition:all 0.2s ease-in-out;}
#booking ul.choice li i {display:block; margin:1rem auto 0.5rem; width:2rem; height:2rem; line-height:1.75rem; border-radius:2rem; text-align:center; font-size:1rem; transition:all 0.2s ease-in-out;}
#booking ul.choice li:hover {background:#000; color:#fff;}

#booking ul.hotel.choice li {position:relative; margin:0.25rem; width:calc(22.25% - 2rem); height:400px; overflow:hidden; text-align:left;}
#booking ul.hotel.choice li div.image {margin:0 0 1rem; height:150px; overflow:hidden;}
#booking ul.hotel.choice li div.image > img {width:100%; height:auto; transition:all 0.25s ease-out;}
#booking ul.hotel.choice li div.image.full-height {height:400px;}
#booking ul.hotel.choice li div.image.full-height > img {margin-left:-100px; width:auto; max-width:1000%; height:400px; transition:all 0.25s ease-out;}
#booking ul.hotel.choice li:hover div.image > img {transform:scale(1.1);}
#booking ul.hotel.choice li h3 {padding:0 0.5rem 0;}
#booking ul.hotel.choice li p {padding:0 0.5rem 1rem; text-align:left; font-size:0.95rem; font-weight:400;}
#booking ul.hotel.choice li p button {position:absolute; bottom:1.5rem; width:calc(100% - 1rem);}
#booking ul.hotel.choice li.chosen {display:inline-block !important; opacity:1 !important; cursor:default;}
#booking ul.hotel.choice li.chosen.expanded {padding:1rem; width:calc(66.75% - 4.5rem); transition:none; overflow-y:scroll;}
#booking ul.hotel.choice li.chosen.expanded:hover {background:#fff; color:#000;}
#booking ul.hotel.choice li.chosen p button {display:none;}
#booking ul.hotel.choice li.chosen div.image > img {transition:none;}
#booking ul.hotel.choice li.chosen:hover div.image > img {transform:none}
#booking ul.hotel.choice li.chosen div.stacked-image {height:calc(400px / 3);}

#easepick {margin:0 auto; padding:3rem 0 0; width:800px; text-align:center;}

#room-picker h2{ margin: 0 0 8px; font-size: 1.6rem; }
#room-picker h3{ margin: 0 0 14px; font-size: 1.05rem; opacity: .8; }

/* --- details/summary accordion (no JS) --- */
#room-picker .accordion{ display: grid; gap: 12px; }
#room-picker details{
    background: #fff;
    color: #111;
    border: 1px solid rgba(0,0,0,.12);
    border-radius: 14px;
    overflow: hidden;
}

/* summary is the clickable header */
#room-picker summary{
    list-style: none;
    cursor: pointer;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    font-weight: 700;
}
#room-picker summary::-webkit-details-marker{ display:none; }

/* left side */
#room-picker .head{
    display: flex;
    gap: 10px;
    align-items: center;
    min-width: 0;
}
#room-picker .badge{
    font-size: .72rem;
    background: #e6f0ff;
    color: #113;
    padding: 3px 8px;
    border-radius: 999px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .3px;
    white-space: nowrap;
}
#room-picker .title{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* right side */
#room-picker .rate{
    font-variant-numeric: tabular-nums;
    font-weight: 700;
}
#room-picker .rate small{ opacity: .7; font-weight: 600; }

/* chevron */
#room-picker .chev{
    width: 18px; height: 18px; margin-left: 8px;
    transition: transform .25s ease;
}
#room-picker details[open] .chev{ transform: rotate(180deg); }

/* panel */
#room-picker .panel{
    display: block;
    padding: 0 16px 14px 16px;
}
@media (min-width: 720px){
    #room-picker .panel{ grid-template-columns: 1fr 280px; }
}
#room-picker .amenities{ display:flex; flex-wrap:wrap; gap:8px; }
#room-picker .chip{
    padding:8px 10px; background:#f6f7f9; border:1px solid rgba(0,0,0,.08);
    border-radius:10px; font-size:.95rem;
}
#room-picker .details{ opacity:.85; line-height:1.55; }

#room-picker .rate-card{
    border:1px solid rgba(0,0,0,.1);
    border-radius:12px;
    padding:12px;
    background:#f7fbff;
}
#room-picker .rate-row{
    display:flex; align-items:center; justify-content:space-between; gap:10px;
    padding:8px 0; border-bottom:1px dashed rgba(0,0,0,.12);
}
#room-picker .rate-row:last-child{ border-bottom:0; }
#room-picker .rate-name{ font-weight:600; }
#room-picker .rate-price{ font-weight:800; }
#room-picker .rate-note{ opacity:.8; font-size:.9rem; margin-top:8px; }

/* Button next to each rate price */
#room-picker .rate-book{
    appearance: none;
    border: 1px solid rgba(0,0,0,.15);
    background: #fff;
    padding: 8px 10px;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
}
#room-picker .rate-book:hover{ filter: brightness(0.95); }

/* Make price + button sit nicely */
#room-picker .rate-row{
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 10px;
    align-items: center;
}

/* Payment grid: left 2/3, right 1/3 */
#payment-grid.grid{
    margin-top:2rem;
    display:grid;
    grid-template-columns: 2fr 1fr;
    gap:24px;
}
@media (max-width: 860px){
    #payment-grid.grid{ grid-template-columns: 1fr; }
}

/* Cards */
.card{
    background:#fff;
    border:1px solid rgba(0,0,0,.08);
    border-radius:14px;
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
}
.card .hd{ padding:18px 18px 0 18px; }
.card .bd{ padding:18px; }
.card-title{ margin:0; font-size:1.2rem; }

/* Form */
#payment-form{ display:grid; gap:16px; }
#payment-form .row{ display:grid; grid-template-columns: 1fr 1fr; gap:12px; }
#payment-form .row-3{ display:grid; grid-template-columns: 2fr 1fr 1fr; gap:12px; }
.field{ display:flex; flex-direction:column; gap:6px; }
label{ font-weight:600; }
.hint{ color:#566072; font-size:.9rem; }
input, select{
    appearance:none; border:1px solid rgba(0,0,0,.08);
    background:#fff; color:#0f1320; padding:12px; border-radius:10px; font-size:1rem;
}
input:focus, select:focus{ outline:none; box-shadow:0 0 0 3px rgba(60,120,255,.25); border-color:transparent; }

.actions{ display:flex; gap:12px; margin-top:6px; align-items:center; }
.btn{
    appearance:none; border:1px solid rgba(0,0,0,.08);
    background:linear-gradient(180deg, #2d7cf0, #2366c7);
    color:#fff; padding:12px 14px; border-radius:10px; font-weight:800; cursor:pointer; letter-spacing:.2px;
}
.btn:hover{ filter:brightness(.98); }
.btn.outline{ background:#fff; color:#0f1320; border-color:rgba(0,0,0,.12); }

/* Summary panel */
.summary{ position:sticky; top:16px; }
.hotel-head{
    display:flex; align-items:center; justify-content:space-between; gap:12px;
    border-bottom:1px solid rgba(0,0,0,.08); padding-bottom:10px; margin-bottom:10px;
}
.hotel-name{ font-weight:800; font-size:1.05rem; }
.stars{ font-size:1.05rem; letter-spacing:1px; }
.rate-badge{
    display:inline-block; font-size:.78rem; font-weight:800; padding:4px 8px; border-radius:999px;
    color:#0c1a2b; background:linear-gradient(180deg, #7cc4ff, #5aa7f3); margin-left:6px;
}
.sum-row{
    display:grid; grid-template-columns: 1fr auto; gap:10px;
    padding:8px 0; border-bottom:1px dashed rgba(0,0,0,.12);
}
.sum-row:last-child{ border-bottom:0; }
.k{ color:#566072; }
.v{ font-weight:700; }
.total{ font-size:1.15rem; }
.mini{ color:#566072; font-size:.9rem; }

/* Little “secure” dot */
.status{ display:flex; gap:8px; align-items:center; color:#566072; font-size:.92rem; }
.dot{ width:8px; height:8px; border-radius:999px; background:#41c29b; display:inline-block; }
