/* Search Suggestion Dropdown Styling */
.search-style-2 {
    position: relative;
}

.search-result-box {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 999;
    max-height: 400px;
    overflow-y: auto;
    padding: 10px 0;
    margin-top: 5px;
}

.search-result-box .search-item {
    padding: 10px 15px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #f5f5f5;
    transition: all 0.3s ease;
}

.search-result-box .search-item:hover {
    background-color: #f9f9f9;
}

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

.search-result-box .search-item .item-img {
    width: 60px;
    height: 60px;
    margin-right: 15px;
    border-radius: 5px;
    overflow: hidden;
}

.search-result-box .search-item .item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.search-result-box .search-item .item-info {
    flex: 1;
}

.search-result-box .search-item .item-info h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #253D4E;
}

.search-result-box .search-item .item-info .item-price {
    font-size: 14px;
    font-weight: 600;
    color: #3BB77E;
}

.search-result-box .search-item .item-info .item-price del {
    font-size: 12px;
    color: #adadad;
    margin-left: 5px;
    font-weight: 400;
}

.search-result-box .search-item .item-category {
    font-size: 12px;
    color: #7E7E7E;
    margin-bottom: 3px;
}

.search-result-box .view-all {
    text-align: center;
    padding: 10px;
    background-color: #f5f5f5;
    border-radius: 0 0 10px 10px;
}

.search-result-box .view-all a {
    color: #3BB77E;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
}

.search-result-box .view-all a:hover {
    text-decoration: underline;
}

.search-result-box .no-result {
    padding: 20px;
    text-align: center;
    color: #7E7E7E;
}

/* Search Card */
.search-card {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 999;
}
