/* Couponis Universal Search - front-end styles */

.cus-search-widget {
	position: relative;
	width: 100%;
	max-width: 480px;
}

.cus-search-input-wrap {
	display: flex;
	width: 100%;
}

.cus-search-input {
	flex: 1 1 auto;
	min-width: 0;
	padding: 12px 16px;
	border: 1px solid #e2e2e2;
	border-right: none;
	border-radius: 4px 0 0 4px;
	font-size: 14px;
	line-height: 1.4;
	outline: none;
}

.cus-search-input:focus {
	border-color: #f5822a;
}

.cus-search-submit {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 18px;
	border: none;
	background: #f5822a;
	color: #fff;
	border-radius: 0 4px 4px 0;
	cursor: pointer;
}

.cus-search-submit:hover {
	background: #e0731f;
}

.cus-search-icon {
	width: 14px;
	height: 14px;
	display: inline-block;
	border: 2px solid currentColor;
	border-radius: 50%;
	position: relative;
}

.cus-search-icon::after {
	content: '';
	position: absolute;
	width: 2px;
	height: 7px;
	background: currentColor;
	bottom: -7px;
	right: -3px;
	transform: rotate(-45deg);
}

.cus-search-results {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	margin-top: 6px;
	background: #fff;
	border: 1px solid #eee;
	border-radius: 6px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.14);
	max-height: 420px;
	overflow-y: auto;
	z-index: 9999;
	text-align: left;
}

.cus-search-results.is-open {
	display: block;
}

.cus-search-results.is-loading {
	opacity: 0.6;
}

.cus-group-title {
	margin: 0;
	padding: 8px 16px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #999;
	background: #fafafa;
}

.cus-result-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.cus-result-item a {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 16px;
	text-decoration: none;
	color: #222;
	font-size: 13px;
}

.cus-result-item a:hover,
.cus-result-item.active a {
	background: #f7f7f7;
}

.cus-result-logo {
	width: 28px;
	height: 28px;
	object-fit: contain;
	flex: 0 0 auto;
	border-radius: 3px;
}

.cus-result-logo--placeholder {
	background: #f0f0f0;
}

.cus-coupon-title {
	font-weight: 600;
	line-height: 1.3;
}

.cus-coupon-store {
	display: block;
	font-size: 11px;
	color: #888;
	font-weight: 400;
	margin-top: 2px;
}

.cus-no-results {
	margin: 0;
	padding: 16px;
	font-size: 13px;
	color: #888;
	text-align: center;
}

/* Highlight pulse applied to the matched coupon box when arriving via a
   #coupon-{ID} deep link from a search result. */
@keyframes cus-highlight-pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(245, 130, 42, 0.55);
	}
	100% {
		box-shadow: 0 0 0 16px rgba(245, 130, 42, 0);
	}
}

.cus-highlight {
	animation: cus-highlight-pulse 1s ease-out 2;
	outline: 2px solid #f5822a;
	outline-offset: 2px;
}
