.things-section-2{
    float: left;
    width: 100%;
    background-color: var(--white);
    border-radius: 10px;
}

.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%;
    /* display: -webkit-box;
    -webkit-line-clamp: 3; 
    -webkit-box-orient: vertical;
    overflow: hidden; */

    min-height: 80px; 
    /* padding-bottom: 8px; */
    /* padding-top: 10px; */
}
.hotel-title p{
    font-weight: 1000;
    color: oklch(0.279 0.041 260.031);
    font-size: 18px;
}
.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: 100%;
    }

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

    .sub-info{
        margin-left: -7px;
    }
}
@media (max-width:425px){
    .things-section-2{
        padding-left: 0px;
        padding-right:0px;
    }
    .things-scrolling-wrapper .hotel-card:last-child {
        margin-right: 0;
    }
}


@media (max-width: 768px) {

    .sub-header-mobile .places-scroll {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .sub-header-mobile .hotel-card {
        background: #fff;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 10px rgba(0,0,0,0.12);
    }

    .sub-header-mobile .hotel-image img {
        width: 100%;
        height: 120px;
        object-fit: cover;
    }

    .sub-header-mobile .hotel-info {
        padding: 8px;
    }

    .sub-header-mobile .hotel-title p {
        font-size: 16px;
        font-weight: bold;
        line-height: 1.3;
        /* margin-bottom: 4px; */
        padding-bottom: 0 !important;
    }

    .sub-header-mobile .hotel-sub {
        font-size: 12px;
        color: #555;
        margin-bottom: 6px;
    }

    .sub-header-mobile .rating-wrap {
        display: flex;
        justify-content: space-between;
        font-size: 12px;
    }

    .sub-header-mobile .price-info {
        margin-top: 6px;
        font-size: 14px;
    }

    .ad-container{
        top: 90px;
    }
}
