#unique-search-icon {
    position: relative;
    top: -2px;
    right: 2px;
    font-size: 19px;
    cursor: pointer;
    z-index: 9999;
    color: #2c2c2c;
    font-weight: 600;
}

#unique-search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background-color: rgba(0, 0, 0, 0.8);*/
    background-color: #fff;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9998;
}

#unique-search-overlay.visible {
    display: flex!important;
}

#unique-search-bar {
    width: 100%;
    text-align: center;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#unique-search-input {
    width: 60%;
    padding: 15px;
    font-size: 18px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 92px;
    height: 57px;
    background: #EF4138;
    color: #fff;
}

#unique-placeholder {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.unique-placeholder-item {
    position: relative;
    /*width: 335px;*/
    /*height: 200px;*/
    background-color: #333;
    border-radius: 4px;
    overflow: hidden;
    flex: 0 0 30%;
    border-radius: 6px;
}

.unique-placeholder-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.unique-placeholder-item h2 {
    position: absolute;
    bottom: 10px;
    left: 10px;
    color: white;
    font-size: 18px;
    margin: 0;
}

#unique-search-results {
    width: 100%;
    display: none;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

#unique-search-results.visible {
    display: flex!important;
}

.unique-search-result {
    position: relative;
    /* width: 335px; */
    /* background-color: #333; */
    /* border-radius: 4px; */
    overflow: hidden;
    /*flex: 0 0 30%;*/
    /*padding: 8px;*/
    /*background: #fff;*/
    /*border: 1px solid #2c2c2c;*/
    /*border-radius: 4px;*/
    /*box-shadow: rgb(0 0 0 / 24%) 0px 3px 8px;*/
}

.unique-search-result img {
    width: 100%;
    height: 350px !important;
     object-fit: cover; 
    /*opacity: 0.7;*/
}

.unique-search-result h2 {
    position: absolute;
    bottom: 10px;
    left: 10px;
    color: white;
    font-size: 18px;
    margin: 0;
}

.search-bottom-category-heading{
    font-size: 26px!important;
    color: #fff!important;
    left: 33px!important;
    bottom: 20px!important;
    letter-spacing: 2.5px!important;
}

