/* Reservation cart: div/card layout instead of table */
.reservation_cart.reservation-cart-div{
    display:block;
    width:100%;
    margin:16px auto;
    border:1px solid #e6ebf2;
    border-radius:16px;
    background:#fff;
    overflow:hidden;
    box-shadow:0 8px 26px rgba(15,35,60,.08);
}
.reservation_cart .reservation-cart-row{
    display:grid;
    grid-template-columns:48px 64px minmax(0,1fr) 150px;
    gap:10px;
    align-items:center;
    padding:10px 14px;
    border-bottom:1px solid #eef2f7;
}
.reservation_cart .reservation-cart-row:last-child{
    border-bottom:0;
}
.reservation_cart .reservation-cart-header{
    background:#f7f9fc;
    font-weight:700;
    color:#25364a;
}
.reservation_cart .reservation-cart-footer{
    background:#fff8f1;
    font-weight:700;
}
.reservation_cart .reservation-cart-cell{
    min-width:0;
    word-break:break-word;
}
.reservation_cart .reservation-cart-th{
    font-weight:700;
}
.reservation_cart img{
    max-width:100%;
    height:auto;
    border-radius:8px;
}
.reservation_cart .form_button{
    margin-top:8px;
}

/* Floating cart button */
.bokotel-floating-cart{
    position:fixed;
    right:18px;
    bottom:22px;
    z-index:9999;
    width:58px;
    height:58px;
    border-radius:50%;
    background:#ff7a21;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    box-shadow:0 12px 28px rgba(255,122,33,.36);
    transition:transform .18s ease, box-shadow .18s ease;
}
.bokotel-floating-cart:hover,
.bokotel-floating-cart:focus{
    color:#fff;
    text-decoration:none;
    transform:translateY(-2px);
    box-shadow:0 16px 34px rgba(255,122,33,.42);
}
.bokotel-floating-cart-icon{
    font-size:27px;
    line-height:1;
}
.bokotel-floating-cart-count{
    position:absolute;
    top:-5px;
    right:-5px;
    min-width:22px;
    height:22px;
    padding:0 5px;
    border-radius:999px;
    background:#1d2b3a;
    color:#fff;
    border:2px solid #fff;
    font-size:12px;
    line-height:18px;
    font-weight:700;
    text-align:center;
}
@media(max-width:767px){
    .reservation_cart.reservation-cart-div{
        border-radius:14px;
        margin:12px 0;
    }
    .reservation_cart .reservation-cart-header{
        display:none;
    }
    .reservation_cart .reservation-cart-row{
        display:block;
        padding:14px;
        border-bottom:8px solid #f3f6fa;
    }
    .reservation_cart .reservation-cart-cell{
        display:block;
        padding:4px 0;
    }
    .reservation_cart .reservation-cart-cell:first-child{
        float:right;
        padding:0;
    }
    .reservation_cart .reservation-cart-cell:nth-child(2){
        width:54px;
        float:left;
        margin-right:10px;
    }
    .reservation_cart .reservation-cart-cell:nth-child(3){
        font-weight:700;
        color:#1f2f44;
        min-height:50px;
    }
    .reservation_cart .reservation-cart-cell:nth-child(4){
        clear:both;
        text-align:right;
        font-size:16px;
        font-weight:700;
        color:#0f5132;
    }
    .bokotel-floating-cart{
        right:14px;
        bottom:16px;
        width:54px;
        height:54px;
    }
}
