.hotel-header{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:30px;
    padding:20px 0;
    border-bottom:1px solid #e5e5e5;
}

.hotel-info{
    flex:1;
}

.hotel-title-wrap{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:10px;
}

.hotel-title{
    font-size:32px;
    font-weight:700;
    margin:0;
    color:#222;
}

.hotel-stars{
    display:flex;
    gap:3px;
    color:#f5b400;
    font-size:18px;
}

.hotel-location{
    display:flex;
    align-items:center;
    gap:8px;
    color:#666;
    font-size:16px;
}

.hotel-location i{
    color:#ff5a5f;
}

.hotel-actions{
    display:flex;
    flex-direction:column;
    align-items:flex-end;
    gap:20px;
}

.hotel-price{
    font-size:34px;
    font-weight:700;
    color:#222;
}

.hotel-price .currency{
    font-size:18px;
    margin-right:4px;
}

.action-buttons{
    display:flex;
    align-items:center;
    gap:10px;
    flex-wrap:wrap;
}

.btn{
    display:inline-flex;
    align-items:center;
    gap:8px;
    text-decoration:none;
    padding:10px 18px;
    border-radius:6px;
    font-size:15px;
    font-weight:600;
    transition:.3s;
}

.btn-outline{
    border:1px solid #dcdcdc;
    color:#333;
    background:#fff;
}

.btn-outline:hover{
    background:#f5f5f5;
}

.btn-primary{
    background:#0a5ea8;
    color:#fff;
}

.btn-primary:hover{
    background:#084b87;
}

.icon-btn{
    width:42px;
    height:42px;
    border:1px solid #dcdcdc;
    border-radius:6px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#333;
    text-decoration:none;
}

.icon-btn:hover{
    background:#f5f5f5;
}

@media (max-width:768px){

    .hotel-header{
        flex-direction:column;
        gap:20px;
    }

    .hotel-actions{
        width:100%;
        align-items:flex-start;
    }

    .hotel-title-wrap{
        flex-wrap:wrap;
    }

    .hotel-title{
        font-size:24px;
    }

    .hotel-price{
        font-size:28px;
    }

    .action-buttons{
        width:100%;
    }
}


.shadow-tab {
    margin-top: 21px;
}
.shadow-tab .nav-tabs {
    display: flex;
    background: #fff;
    box-shadow: 0px 4.24px 15px 0px #0000000D;
    border-radius: 8px;
    justify-content: space-around;
    align-items: center;
}
.shadow-tab .nav-tabs li.active {
    color: #034b63;
    border-bottom: 3px solid #034b63;
}

.shadow-tab .nav-tabs li {
    position: relative;
    display: inline-block;
    padding: 10px 50px;
    white-space: nowrap;
}
.shadow-tab .nav-tabs li a {
    color: #262626;
    font-weight: 500;
    font-size: 14px;
}
.hotel-card {
    border: 1px solid #ddd;
    padding: 14px;
    background-color: #fff;
    border-radius: 8px;
    margin-top: 21px;
}
.hotel-card .title-section {
    display: flex;
    justify-content: space-between;
}
.hotel-card .top-head {
    display: flex;
    flex-direction: column;
    gap: 0px;
}
.top-head .headstar {
    display: flex;
    gap: 10px;
    align-items: center;
}
.hotel-card .location {
    color: #2196f3 !important;
    font-size: 14px;
    font-weight: 400;
}