.wicps-search,
.wicps-search * {
	box-sizing: border-box;
}

.wicps-search {
	--wicps-ink: #12130f;
	--wicps-muted: #64665e;
	--wicps-light: #fbfaf5;
	--wicps-paper: #ffffff;
	--wicps-border: #e5e1d5;
	--wicps-gold: #d4ad4f;
	--wicps-gold-dark: #8b691f;
	--wicps-red: #c83b37;
	--wicps-red-dark: #8e201d;
	--wicps-green: #1f7a4c;
	width: 100%;
	max-width: 1320px;
	margin: 0 auto;
	color: var(--wicps-ink);
	font-family: inherit;
}

.wicps-search__panel {
	position: relative;
	overflow: hidden;
	padding: clamp(34px, 5vw, 66px);
	border: 1px solid rgba(212, 173, 79, 0.35);
	background:
		radial-gradient(circle at 50% -45%, rgba(212, 173, 79, 0.22), transparent 52%),
		linear-gradient(145deg, #0d0e0b, #171812);
	color: #fff;
}

.wicps-search__panel::before,
.wicps-search__panel::after {
	position: absolute;
	width: 190px;
	height: 190px;
	border: 1px solid rgba(212, 173, 79, 0.13);
	border-radius: 50%;
	content: "";
	pointer-events: none;
}

.wicps-search__panel::before {
	top: -115px;
	left: -65px;
}

.wicps-search__panel::after {
	right: -70px;
	bottom: -130px;
}

.wicps-search__intro,
.wicps-search__form,
.wicps-search__count {
	position: relative;
	z-index: 1;
}

.wicps-search__intro {
	max-width: 780px;
	margin: 0 auto 28px;
	text-align: center;
}

.wicps-search__eyebrow,
.wicps-search__program {
	margin: 0 0 12px;
	color: #e5c56f;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.14em;
	line-height: 1.4;
	text-transform: uppercase;
}

.wicps-search__eyebrow span {
	display: inline-block;
	margin: 0 7px;
	font-size: 9px;
	vertical-align: 1px;
}

.wicps-search__title {
	margin: 0;
	color: #fff;
	font-size: clamp(32px, 5vw, 58px);
	font-weight: 800;
	letter-spacing: -0.035em;
	line-height: 1.05;
}

.wicps-search__title::before,
.wicps-search__title::after {
	display: none !important;
	content: none !important;
}

.wicps-search__description {
	max-width: 680px;
	margin: 16px auto 0;
	color: #e8e8e3;
	font-size: clamp(16px, 1.7vw, 20px);
	line-height: 1.55;
}

.wicps-search__form {
	max-width: 850px;
	margin: 0 auto;
}

.wicps-search__label {
	display: block;
	margin-bottom: 8px;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
}

.wicps-search__controls {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 10px;
}

.wicps-search__input-wrap {
	position: relative;
}

.wicps-search__input {
	width: 100%;
	height: 58px;
	margin: 0;
	padding: 0 52px 0 18px;
	border: 1px solid transparent;
	border-radius: 8px;
	outline: none;
	background: #fff;
	box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
	color: #151611;
	font: inherit;
	font-size: 17px;
	line-height: 58px;
	transition: border-color 160ms ease, box-shadow 160ms ease;
}

.wicps-search__input:focus {
	border-color: #e4c66e;
	box-shadow: 0 0 0 4px rgba(212, 173, 79, 0.2), 0 12px 34px rgba(0, 0, 0, 0.22);
}

.wicps-search__input::placeholder {
	color: #85877f;
	opacity: 1;
}

.wicps-search__clear {
	position: absolute;
	top: 50%;
	right: 8px;
	display: grid;
	width: 38px;
	height: 38px;
	margin: 0;
	padding: 0;
	transform: translateY(-50%);
	place-items: center;
	border: 0;
	border-radius: 50%;
	background: transparent;
	color: #55574f;
	cursor: pointer;
	font: inherit;
	font-size: 28px;
	font-weight: 300;
	line-height: 1;
}

.wicps-search__clear:hover,
.wicps-search__clear:focus-visible {
	background: #efeee8;
}

.wicps-search__clear[hidden] {
	display: none;
}

.wicps-search__submit {
	min-width: 176px;
	height: 58px;
	margin: 0;
	padding: 0 25px;
	border: 1px solid #e7c96f;
	border-radius: 8px;
	background: linear-gradient(110deg, #f5e4a2, #cfaa4d 54%, #ead07d);
	box-shadow: 0 12px 28px rgba(212, 173, 79, 0.18);
	color: #15140e;
	cursor: pointer;
	font: inherit;
	font-size: 15px;
	font-weight: 800;
	line-height: 1;
	transition: filter 160ms ease, transform 160ms ease;
}

.wicps-search__submit:hover,
.wicps-search__submit:focus-visible {
	filter: brightness(1.06);
	transform: translateY(-1px);
}

.wicps-search__submit:disabled {
	cursor: wait;
	filter: grayscale(0.25);
	opacity: 0.72;
}

.wicps-search--full .wicps-search__submit,
.wicps-search--connect .wicps-search__submit {
	color: #050505 !important;
	text-shadow: none !important;
}

.wicps-search__hint,
.wicps-search__count {
	margin: 9px 0 0;
	color: #bfc0b9;
	font-size: 13px;
	line-height: 1.5;
}

.wicps-search__count {
	text-align: center;
}

.wicps-results {
	background: var(--wicps-light);
}

.wicps-results__state {
	display: flex;
	min-height: 132px;
	padding: 30px;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	border: 1px solid var(--wicps-border);
	border-top: 0;
	color: var(--wicps-muted);
	text-align: center;
}

.wicps-results__state p {
	max-width: 630px;
	margin: 5px auto 0;
	font-size: 15px;
	line-height: 1.55;
}

.wicps-results__state-icon {
	display: grid;
	width: 34px;
	height: 34px;
	margin-bottom: 3px;
	place-items: center;
	border: 1px solid #d7d3c7;
	border-radius: 50%;
	color: #8b691f;
	font-size: 20px;
	font-weight: 700;
}

.wicps-results__state-title {
	color: var(--wicps-ink);
	font-size: 18px;
}

.wicps-results__state--loading .wicps-results__state-icon {
	animation: wicps-pulse 900ms ease-in-out infinite alternate;
}

.wicps-results__state--error .wicps-results__state-icon,
.wicps-results__state--empty .wicps-results__state-icon {
	border-color: rgba(200, 59, 55, 0.28);
	color: var(--wicps-red);
}

.wicps-results__contact {
	display: inline-flex;
	margin-top: 14px;
	padding: 9px 15px;
	align-items: center;
	justify-content: center;
	border: 1px solid #c9a24a;
	border-radius: 6px;
	color: #6e5318;
	font-size: 14px;
	font-weight: 800;
	text-decoration: none;
}

.wicps-results__list {
	padding: clamp(20px, 3vw, 34px);
	border: 1px solid var(--wicps-border);
	border-top: 0;
}

.wicps-results__summary {
	margin: 0 0 14px;
	color: #76786f;
	font-size: 13px;
	font-weight: 700;
}

.wicps-result {
	overflow: hidden;
	margin-top: 16px;
	border: 1px solid var(--wicps-border);
	border-radius: 8px;
	background: var(--wicps-paper);
	box-shadow: 0 12px 30px rgba(38, 35, 26, 0.06);
}

.wicps-result:first-of-type {
	margin-top: 0;
}

.wicps-result__header {
	display: flex;
	padding: 19px 22px;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid #eeece4;
}

.wicps-result__brand {
	display: block;
	margin-bottom: 2px;
	color: #8a8b83;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.wicps-result__model {
	margin: 0;
	color: #151611;
	font-size: clamp(20px, 2.2vw, 27px);
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1.2;
}

.wicps-result__programs {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.wicps-program {
	min-width: 0;
	padding: 22px;
}

.wicps-program + .wicps-program {
	border-left: 1px solid #eeece4;
}

.wicps-program__head {
	display: flex;
	gap: 12px;
	align-items: center;
	justify-content: space-between;
}

.wicps-program__name {
	margin: 0;
	color: #25261f;
	font-size: 16px;
	font-weight: 800;
	line-height: 1.3;
}

.wicps-program--connect .wicps-program__name {
	color: var(--wicps-gold-dark);
}

.wicps-program--utility .wicps-program__name {
	color: var(--wicps-red-dark);
}

.wicps-program__status {
	display: inline-flex;
	padding: 7px 11px;
	align-items: center;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 900;
	line-height: 1.2;
	white-space: nowrap;
}

.wicps-program__status--yes {
	background: #e8f5ed;
	color: #17623d;
}

.wicps-program__status--no {
	background: #f5eceb;
	color: #942d29;
}

.wicps-program__message {
	margin: 11px 0 0;
	color: #6a6c64;
	font-size: 14px;
	line-height: 1.5;
}

.wicps-program__button {
	display: inline-flex;
	min-height: 38px;
	margin-top: 15px;
	padding: 8px 14px;
	align-items: center;
	justify-content: center;
	border: 1px solid currentColor;
	border-radius: 6px;
	font-size: 13px;
	font-weight: 800;
	text-decoration: none;
}

.wicps-program--connect .wicps-program__button {
	color: var(--wicps-gold-dark);
}

.wicps-program--utility .wicps-program__button {
	color: var(--wicps-red-dark);
}

/* Compact variants for product cards. */
.wicps-search--compact {
	max-width: 100%;
}

.wicps-search--compact .wicps-search__panel {
	padding: clamp(24px, 4vw, 38px);
}

.wicps-search--compact .wicps-search__panel::before,
.wicps-search--compact .wicps-search__panel::after,
.wicps-search--compact .wicps-search__count {
	display: none;
}

.wicps-search--compact .wicps-search__intro {
	max-width: 720px;
	margin-bottom: 20px;
}

.wicps-search--compact .wicps-search__program {
	margin-bottom: 7px;
}

.wicps-search--compact .wicps-search__title {
	font-size: clamp(24px, 3.2vw, 36px);
}

.wicps-search--compact .wicps-search__description {
	margin-top: 9px;
	font-size: 15px;
}

.wicps-search--compact .wicps-search__form {
	max-width: 740px;
}

.wicps-search--compact .wicps-search__input,
.wicps-search--compact .wicps-search__submit {
	height: 52px;
}

.wicps-search--compact .wicps-search__input {
	line-height: 52px;
}

.wicps-search--compact .wicps-results__state {
	min-height: 82px;
	padding: 18px 24px;
}

.wicps-search--compact .wicps-results__state-icon {
	width: 28px;
	height: 28px;
	font-size: 16px;
}

.wicps-search--compact .wicps-results__list {
	padding: 18px;
}

.wicps-search--compact .wicps-results__summary {
	margin-bottom: 9px;
}

.wicps-compact-result {
	display: flex;
	margin-top: 9px;
	padding: 16px 18px;
	align-items: flex-start;
	border: 1px solid #dedbd1;
	border-radius: 7px;
	background: #fff;
}

.wicps-compact-result:first-of-type {
	margin-top: 0;
}

.wicps-compact-result__icon {
	display: grid;
	width: 30px;
	height: 30px;
	margin: 1px 12px 0 0;
	flex: 0 0 30px;
	place-items: center;
	border-radius: 50%;
	background: #e9f5ee;
	color: var(--wicps-green);
	font-size: 16px;
	font-weight: 900;
}

.wicps-compact-result.is-unsupported .wicps-compact-result__icon {
	background: #f7eaea;
	color: var(--wicps-red);
}

.wicps-compact-result__model {
	margin: 0;
	color: #171812;
	font-size: 18px;
	font-weight: 800;
	line-height: 1.3;
}

.wicps-compact-result__message {
	margin: 3px 0 0;
	color: #5e6058;
	font-size: 14px;
	line-height: 1.45;
}

.wicps-search--connect .wicps-search__program {
	color: #e4c36b;
}

.wicps-search--utility .wicps-search__panel {
	border-color: rgba(200, 59, 55, 0.4);
	background:
		radial-gradient(circle at 50% -45%, rgba(200, 59, 55, 0.2), transparent 52%),
		linear-gradient(145deg, #0d0e0b, #181110);
}

.wicps-search--utility .wicps-search__program {
	color: #ee716d;
}

.wicps-search--utility .wicps-search__input:focus {
	border-color: #d94a45;
	box-shadow: 0 0 0 4px rgba(200, 59, 55, 0.18), 0 12px 34px rgba(0, 0, 0, 0.22);
}

.wicps-search--utility .wicps-search__submit {
	border-color: #df5a55;
	background: transparent;
	box-shadow: none;
	color: #fff !important;
}

/* Full search page: full-width OceanWP background matching wicreset.pl. */
html.wicps-full-page-document,
body.wicps-full-page-active,
body.wicps-full-page-active #outer-wrap,
body.wicps-full-page-active #wrap,
body.wicps-full-page-active #content-wrap,
body.wicps-full-page-active #primary,
body.wicps-full-page-active #content,
body.wicps-full-page-active .content-area,
body.wicps-full-page-active .site-content,
body.wicps-full-page-active article.page,
body.wicps-full-page-active article.page .entry {
	background: #080909 !important;
}

body.wicps-full-page-active #main {
	min-height: calc(100vh - 160px) !important;
	background:
		linear-gradient(135deg, rgba(214, 176, 76, 0.15) 0%, rgba(214, 176, 76, 0.05) 18%, rgba(214, 176, 76, 0) 42%),
		linear-gradient(315deg, rgba(214, 176, 76, 0.11) 0%, rgba(214, 176, 76, 0.03) 20%, rgba(214, 176, 76, 0) 46%),
		linear-gradient(180deg, #101115 0%, #0b0c0e 48%, #080909 100%) !important;
}

body.wicps-full-page-active #main::before,
body.wicps-full-page-active #main::after {
	display: none !important;
	content: none !important;
}

body.wicps-full-page-active #content-wrap {
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
	padding: 0 !important;
}

body.wicps-full-page-active #primary,
body.wicps-full-page-active #content {
	width: 100% !important;
	max-width: none !important;
	float: none !important;
	margin: 0 !important;
	padding: 0 !important;
}

body.wicps-full-page-active #right-sidebar,
body.wicps-full-page-active #left-sidebar {
	display: none !important;
}

body.wicps-full-page-active article.page,
body.wicps-full-page-active article.page .entry,
body.wicps-full-page-active #main .elementor,
body.wicps-full-page-active #main .elementor-section,
body.wicps-full-page-active #main .elementor-container,
body.wicps-full-page-active #main .elementor-column,
body.wicps-full-page-active #main .elementor-widget-wrap,
body.wicps-full-page-active #main .elementor-widget,
body.wicps-full-page-active #main .elementor-widget-container,
body.wicps-full-page-active #main .elementor-shortcode {
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
	padding: 0 !important;
}

body.wicps-full-page-active .wicps-search--full {
	width: calc(100% - 44px);
	max-width: 1160px;
	margin: 65px auto 95px;
	background: #101115;
	box-shadow: 0 26px 70px rgba(0, 0, 0, 0.24);
}

body.wicps-full-page-active .wicps-search--full .wicps-search__input {
	padding-right: 18px;
	border-color: rgba(214, 176, 76, 0.48);
	background: rgba(16, 17, 21, 0.96);
	box-shadow: none;
	color: #ffffff;
}

body.wicps-full-page-active .wicps-search--full .wicps-search__input:focus {
	border-color: #d6b04c;
	background: #111216;
	box-shadow: 0 0 0 3px rgba(214, 176, 76, 0.14);
}

body.wicps-full-page-active .wicps-search--full .wicps-search__input::placeholder {
	color: #a9a9a7;
}

body.wicps-full-page-active .wicps-search--full .wicps-search__clear {
	display: none !important;
}

body.wicps-full-page-active .wicps-search--full .wicps-results,
body.wicps-full-page-active .wicps-search--full .wicps-results__state,
body.wicps-full-page-active .wicps-search--full .wicps-results__list {
	border-color: rgba(214, 176, 76, 0.24);
	background: #101115;
}

body.wicps-full-page-active .wicps-search--full .wicps-results__state,
body.wicps-full-page-active .wicps-search--full .wicps-results__state p,
body.wicps-full-page-active .wicps-search--full .wicps-results__summary {
	color: #cfcfcb;
}

body.wicps-full-page-active .wicps-search--full .wicps-results__state-title,
body.wicps-full-page-active .wicps-search--full .wicps-result__model {
	color: #ffffff;
}

body.wicps-full-page-active .wicps-search--full .wicps-results__state-icon {
	border-color: rgba(214, 176, 76, 0.38);
	color: #f0d27c;
}

body.wicps-full-page-active .wicps-search--full .wicps-result {
	border-color: rgba(214, 176, 76, 0.28);
	background: #101115;
	box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
}

body.wicps-full-page-active .wicps-search--full .wicps-result__header {
	border-color: rgba(255, 255, 255, 0.1);
}

body.wicps-full-page-active .wicps-search--full .wicps-result__brand {
	color: #aaa9a5;
}

body.wicps-full-page-active .wicps-search--full .wicps-program {
	background: #0c0d10;
}

body.wicps-full-page-active .wicps-search--full .wicps-program + .wicps-program {
	border-color: rgba(255, 255, 255, 0.1);
}

body.wicps-full-page-active .wicps-search--full .wicps-program--connect .wicps-program__name {
	color: #f0d27c;
	text-shadow: 0 0 13px rgba(214, 176, 76, 0.2);
}

body.wicps-full-page-active .wicps-search--full .wicps-program--utility .wicps-program__name {
	color: #ff1935;
	text-shadow: 0 0 13px rgba(255, 25, 53, 0.24);
}

body.wicps-full-page-active .wicps-search--full .wicps-program__message {
	color: #eeeeec;
}

body.wicps-full-page-active .wicps-search--full .wicps-program__status--yes {
	background: rgba(41, 223, 104, 0.1);
	color: #29df68;
	text-shadow: 0 0 12px rgba(41, 223, 104, 0.2);
}

body.wicps-full-page-active .wicps-search--full .wicps-program__status--no {
	background: rgba(255, 25, 53, 0.1);
	color: #ff1935;
	text-shadow: 0 0 12px rgba(255, 25, 53, 0.2);
}

body.wicps-full-page-active .wicps-search--full .wicps-program__button {
	min-height: 46px;
	padding: 11px 22px;
	border-radius: 9px;
	font-weight: 800;
	transition: filter 160ms ease, transform 160ms ease;
}

body.wicps-full-page-active .wicps-search--full .wicps-program--connect .wicps-program__button {
	border-color: #f0d27c;
	background: linear-gradient(135deg, #f0d27c 0%, #d6b04c 100%);
	box-shadow: 0 8px 20px rgba(214, 176, 76, 0.18);
	color: #080909;
}

body.wicps-full-page-active .wicps-search--full .wicps-program--utility .wicps-program__button {
	border-color: #ff4059;
	background: linear-gradient(135deg, #ff2945 0%, #c90027 100%);
	box-shadow: 0 8px 20px rgba(255, 25, 53, 0.2);
	color: #ffffff;
}

body.wicps-full-page-active .wicps-search--full .wicps-program__button:hover,
body.wicps-full-page-active .wicps-search--full .wicps-program__button:focus-visible {
	filter: brightness(1.1);
	transform: translateY(-2px);
}

body.wicps-full-page-active .wicps-search--full .wicps-results__contact {
	border-color: #e5c667;
	background: linear-gradient(135deg, #f0d27c 0%, #d6b04c 100%);
	color: #080909;
}

body.wicps-full-page-active #footer,
body.wicps-full-page-active #footer-widgets,
body.wicps-full-page-active #footer-bottom,
body.wicps-full-page-active .footer-widgets-inner,
body.wicps-full-page-active #footer-bottom-inner {
	background: #080909 !important;
	color: #ddddda !important;
}

@keyframes wicps-pulse {
	from {
		opacity: 0.45;
		transform: scale(0.92);
	}
	to {
		opacity: 1;
		transform: scale(1.03);
	}
}

@media (max-width: 680px) {
	body.wicps-full-page-active #main {
		min-height: calc(100vh - 120px) !important;
	}

	body.wicps-full-page-active .wicps-search--full {
		width: calc(100% - 30px);
		margin: 42px auto 70px;
	}

	.wicps-search__panel {
		padding: 30px 18px;
	}

	.wicps-search__controls {
		grid-template-columns: 1fr;
	}

	.wicps-search__submit {
		width: 100%;
	}

	.wicps-result__programs {
		grid-template-columns: 1fr;
	}

	.wicps-program + .wicps-program {
		border-top: 1px solid #eeece4;
		border-left: 0;
	}

	.wicps-program__head {
		align-items: flex-start;
		flex-direction: column;
	}

	.wicps-search--compact .wicps-search__panel {
		padding: 24px 18px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.wicps-search *,
	.wicps-search *::before,
	.wicps-search *::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
}
