.product-search-form {
    position: relative;
    max-width: 782px;
    /*width: 100%;*/
    flex-grow: 1;
    display: flex;
    align-items: center;
    /*margin: 0 115px 0 130px;*/
    transition: all 0.2s ease;
}

.product-search-form .btn-search {
    flex: 0 0 40px;
    height: 40px;
    background: #13283b;
    color: #fff;
    border: none;
    box-shadow: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.product-search-form .btn-search:hover {
    opacity: 0.8;
}

.product-search-form .btn-search img,
.product-search-form .btn-search svg {
    max-width: 19px;
    max-height: 19px;
    width: 100%;
}

.product-search-form .form-control {
    width: 100%;
    height: 40px;
    border: 1px solid #13283b;
    padding: 0 15px;
}

.search-dropdown {
    font-size: 14px;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 9999;
    background: #fff;
    width: 100%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid #ccc;
    border-top: none;
    display: none;
}

.search-dropdown-list {

}

.search-dropdown-items {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 400px;
    overflow-y: auto;
}

.search-dropdown-item {
    cursor: pointer;
    border-bottom: 1px solid #eee;
    transition: background 0.2s ease;
}

.search-dropdown-thumb img {
    display: block;
    width: 50px;
    height: 50px;
    object-fit: cover;
}

.search-dropdown-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.search-dropdown-item:last-child {
    border-bottom: none;
}

.search-dropdown-item:hover {
    background-color: #f5f5f5;

}

.search-dropdown-item a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #333;
    padding: 5px 10px;
}

.search-dropdown-item small {
    color: #999;
}

.search-dropdown-more-link {
    text-align: center;
    padding: 5px 10px;
    background-color: #fafafa;
    border-top: 1px solid #ddd;
}

.search-dropdown-more-link a {
    text-decoration: none;
    color: #007bff;
    font-weight: bold;
}

.search-dropdown-more-link a:hover {
    text-decoration: underline;
}

@media (max-width: 767px) {
    .m-search-wrap .header-search {
        position: relative;
        left: 0;
        top: 0;
    }
}