/* ==================================================
   Business Search
================================================== */

.vb-search {
    position: relative;
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
}


.vb-search__input {
    width: 100%;
    height: 68px;
    padding: 0 24px;
    border: none;
    border-radius: 16px;
    background: #ffffff;
    font-size: 1.15rem;
    color: #111827;
    box-shadow: 0 12px 35px rgba(0,0,0,.15);
    transition: all .25s ease;
}

.vb-search__input:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(37,99,235,.25);

}

.vb-search__results {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 14px;
    overflow: visible;
    box-shadow: 0 15px 40px rgba(0,0,0,.15);
    display: none;
    z-index: 99999;
}

.vb-search__results.active {
    display: block;
}

.vb-search__result {
    padding: 16px 20px;
    border-bottom: 1px solid #f3f4f6;
    cursor: pointer;
    transition: background .2s;
}

.vb-search__result:last-child {
    border-bottom: none;
}

.vb-search__result:hover {
    background: #f8fafc;
}

.vb-search__title {
    font-weight: 600;
    color: #111827;
}

.vb-search__meta {
    font-size: .9rem;
    color: #6b7280;
    margin-top: 4px;
}

@media (max-width: 768px) {

    .vb-search__wrapper {
        flex-direction: column;
    }

    .vb-search__button {
        width: 100%;
    }

}

/* ----------------------------------------
   Search Result Layout
---------------------------------------- */

.vb-search__result {
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 12px 16px;
	text-decoration: none;
	color: inherit;
	border-bottom: 1px solid #f1f1f1;
	transition: background 0.2s ease;
}

.vb-search__result:last-child {
	border-bottom: none;
}

.vb-search__result:hover {
	background: #f8f9fa;
}

.vb-search__image {
	width: 64px;
	height: 64px;
	flex-shrink: 0;
	border-radius: 8px;
	overflow: hidden;
	background: #f3f3f3;
}

.vb-search__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.vb-search__placeholder {
	width: 100%;
	height: 100%;
	background: #e5e7eb;
}

.vb-search__content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-width: 0;
	flex: 1;
}

.vb-search__title {
	font-size: 16px;
	font-weight: 600;
	color: #1f2937;
	margin-bottom: 4px;
	line-height: 1.3;
}

.vb-search__meta {
	font-size: 13px;
	color: #6b7280;
	line-height: 1.4;
}