/* Bright Vessel - Storefront → YITH Ajax Search Replacer */
/* Version: 1.6.0										  */
/* ------------------------------------------------------ */

.bv-yith-header-search {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	max-width: 360px;
	margin-left: auto;
	margin-bottom: 20px;
	column-gap: 20px;
}

@media (max-width: 767px) {
	.bv-yith-header-search {
		max-width: 100%; /* full width on small screens */
		justify-content: left; /* optional: center it for nicer balance */
	}
}

/* Search Column */
.bv-search-column {
	flex-grow: 1;
}

.bv-yith-header-search form.yith-ajaxsearchform {
	display: flex;
	align-items: center;
	background: #ffffff;
	border: 1px solid #d9d9d9;
	border-radius: 4px; /* Pill style - maybe increase radius if needed, but keeping 4px as per existing */
	overflow: hidden;
}

.bv-yith-header-search input[type="search"],
.yith-ajaxsearchform input[type="search"] {
	border: none;
	padding: 10px 12px;
	font-size: 15px;
	width: 220px;
	outline: none;
	color: #333;
}

.bv-yith-header-search button,
.yith-ajaxsearchform button {
	background-color: #007c89;
	color: #fff;
	font-weight: 600;
	border: none;
	padding: 10px 16px;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.bv-yith-header-search button:hover,
.yith-ajaxsearchform button:hover {
	background-color: #005e66;
}

/* Cart Column */
.bv-cart-column {
	display: flex;
	align-items: center;
}

.bv-cart-link {
	display: flex;
	align-items: center;
	text-decoration: none;
	color: #333;
	font-weight: 600;
	transition: color 0.3s ease;
}

.bv-cart-link:hover {
	color: #007c89;
}

.bv-cart-icon {
	display: flex;
	align-items: center;
	margin-right: 5px;
}

.bv-cart-count {
	background-color: #007c89;
	color: #fff;
	font-size: 12px;
	font-weight: bold;
	padding: 2px 6px;
	border-radius: 10px; /* Pill shape for count */
	min-width: 18px;
	text-align: center;
}

.autocomplete-suggestions {
	z-index: 9999;
	border-radius: 4px;
	border: 1px solid #ccc;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
	background: #fff;
}

.yith-ajaxsearchform .autocomplete-suggestion strong {
	color: #007c89;
}

.bv-yith-header-search .autocomplete-suggestions {
	width: 100% !important;
}
