.tpb-booking-wrapper{
    max-width:1200px;
    margin:40px auto;
    padding:20px;
}

.tpb-booking-card{
    background:#fff;
    border-radius:18px;
    padding:35px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.tpb-booking-card h2{
    margin-bottom:30px;
    font-size:34px;
    color:#293C34;
    font-weight:700;
}

.tpb-row{
    display:flex;
    gap:20px;
    margin-bottom:20px;
    flex-wrap:wrap;
}

.tpb-col,
.tpb-field{
    flex:1;
    min-width:220px;
}

.tpb-field label{
    display:block;
    margin-bottom:8px;
    font-weight:600;
    color:#293C34;
}

.tpb-field input,
.tpb-field select{
    width:100%;
    height:52px;
    padding:0 15px;
    border:1px solid #d9d9d9;
    border-radius:8px;
    font-size:15px;
    outline:none;
    transition:.3s;
    background:#fff;
}

.tpb-field input:focus,
.tpb-field select:focus{
    border-color:#293C34;
}

#tpb-summary{
    margin-top:30px;
    border:1px solid #e8e8e8;
    border-radius:12px;
    padding:25px;
    background:#fafafa;
}

#tpb-summary table{
    width:100%;
    border-collapse:collapse;
}

#tpb-summary td,
#tpb-summary th{
    padding:12px 0;
    border-bottom:1px solid #ececec;
}

#tpb-summary th{
    font-size:18px;
    color:#293C34;
}

#tpb-total{
    font-size:24px;
    color:#0B6B3A;
    font-weight:700;
}

#tpb-book-btn{
    width:100%;
    margin-top:30px;
    height:58px;
    border:none;
    border-radius:10px;
    background:#293C34;
    color:#fff;
    font-size:18px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

#tpb-book-btn:hover{
    background:#1e2d28;
}

@media(max-width:768px){

    .tpb-row{
        flex-direction:column;
    }

    .tpb-col,
    .tpb-field{
        width:100%;
        min-width:100%;
    }

    .tpb-booking-card{
        padding:20px;
    }

    .tpb-booking-card h2{
        font-size:26px;
    }

}