/**
 * Custom search form – coral border, white input, icon button.
 * Form submit to /search?q=...
 *
 * @package Programmatic_SEO
 */

.pseo-search-form {
	display: flex;
	align-items: stretch;
	max-width: 100%;
	border: 1px solid #D94F5C;
	border-radius: 6px;
	overflow: hidden;
	background: #fff;
}

.pseo-search-form-label {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.pseo-search-form-input {
	flex: 1;
	min-width: 0;
	height: 44px;
	padding: 0 14px 0 14px;
	border: none;
	outline: none;
	background:transparent;
	font-size: 1rem;
	line-height: 1.4;
	color: #1e293b;
}

.pseo-search-form-input::placeholder {
	color: #64748b;
}

.pseo-search-form-input::-webkit-search-cancel-button {
	appearance: none;
}

.pseo-search-form-submit {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	min-width: 52px;
	height: 44px;
	padding: 0;
	border: none;
	background: #D94F5C;
	color: #fff;
	cursor: pointer;
	transition: background 0.2s ease;
}

.pseo-search-form-submit:hover,
.pseo-search-form-submit:focus-visible {
	background: #ff5252;
}

.pseo-search-form-submit:focus-visible {
	outline: 2px solid #D94F5C;
	outline-offset: 2px;
}

.pseo-search-form-icon {
	flex-shrink: 0;
	width: 20px;
	height: 20px;
}
