/* scroll section ************************************************************** */

.scroll-section .product-slide {
    width: 100%;
    height: 230px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}
.scroll-section .product-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    user-select: none;
}

.scroll-section .product-slide .info-box {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 10px 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(24, 39, 117, 0.6) 100%);
    color: white;
    width: 100%;
    backdrop-filter: blur(1.5px) ;
}
.scroll-section .product-slide .info-box .box-head {
    font-size: 12px;
    font-weight: 600;
    line-height: 14.4px;
}
.scroll-section .product-slide .info-box .box-bottom {
    font-size: 9px;
    font-weight: 400;
    line-height: 10.8px;
    margin-top: 5px;
}

/* Categories section *********************************************************************************** */
.search-page .categories .products-container .product-item .product-img {
    border: 0;
    padding: 0;
    margin-bottom: 10px;
}
.product-item .product-img img {
         height: 200px;
    object-fit: cover;
    border-radius: 14px;
    width: 100%;
}

.search-page .categories h4.title ,
.search-page .hotel-section h4.title {
    font-size: 22px;
    font-weight: 600;
    line-height: 26.4px;
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 20px;
    }
   html[dir="ltr"] header .container .search-box {
        width: calc(100% - 40px);
        align-self: self-start;
    }
    html[dir="rtl"]  header .container .search-box {
        width: calc(100% - 40px);
        align-self: end;;
    }

    header .container .action-buttons-container {
        display: none;
    }
    
}