.things-section-2{
    float: left;
    width: 100%;
    background-color: var(--white);
    margin-bottom: 30px;
    margin-top:25px ;
    padding: 10px;
    padding-left: 25px;
    border: 1px solid #e3e3e3;
}

.things-header-2{
   color: black;
   font-weight: 600;
   margin-bottom: 13px;
   padding-left: 7px;
}
.hotel-image{
    width: 100%;
}
.things-scrolling-wrapper {
    display: flex;
    overflow-x: auto;
    padding-bottom: 10px;
}


.things-scrolling-wrapper {
    scrollbar-width: thin;
    scrollbar-color: #666 #f1f1f1;
}

.things-scrolling-wrapper::-webkit-scrollbar {
    height: 8px; 
}

.things-scrolling-wrapper::-webkit-scrollbar-track {
    background: #f1f1f1; 
    border-radius: 10px;
}

.things-scrolling-wrapper::-webkit-scrollbar-thumb {
    background: #666; 
    border-radius: 10px;
}

.things-scrolling-wrapper::-webkit-scrollbar-thumb:hover {
    background: #444; 
}

.hotel-card {
    flex: 0 0 auto;
    width: 100%;
    max-width: 275px;
    margin-right: 15px;
    border: 1px solid #ddd;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    position: relative;
}
.hotel-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}
.hotel-info {
    padding: 10px;
    text-align: left;
}

.hotel-info p{
    margin: 0;
    color: black;
}

.hotel-info .hotel-title{
    width: 100%;
    /* padding-bottom: 8px; */
    /* padding-top: 10px; */
}
.hotel-title p{
    font-weight: 1000;
    color: oklch(0.279 0.041 260.031);
    font-size: 20px;
}
.reviews{
    font-size: 16px;
    font-weight: bold;
    color: black;
}
.price-info {
    text-align: right;
    padding-top: 10px;
}

.features p{
    padding-bottom: 2px;
}

.rating {
    display: inline-block;
    background: #4CAF50;
    color: white;
    padding: 3px 8px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 14px;
}

.ad{
    display: inline-block;
    background:white;
    color: black;
    padding: 1px 4px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 12px;
}

.ad-container{
    position: absolute;
    top: 117px;
    left: 15px;
}

@media (max-width: 768px) {
    .things-scrolling-wrapper {
        flex-wrap: nowrap;
        overflow-x: scroll;
    }
    .hotel-card {
        width: 80%;
    }

    .hotel-sub-title{
        padding-left: 10px;
    }

    .sub-info{
        margin-left: -7px;
    }
}