/*
Theme Name: Saleads
Author: Saleads
Version: 1.0
*/


/* =========================
   RESET
========================= */

*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}


/* =========================
   HTML / BODY
========================= */

html {
	height: 100%;
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}

body {
	min-height: 100%;
	display: flex;
	flex-direction: column;
	margin: 0;
	padding: 0;

	background: #ffffff;
	color: #000000;

	font-family: sans-serif;
	line-height: 1.4;

	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
}


/* =========================
   STICKY FOOTER
========================= */

.site-header {
	flex-shrink: 0;
}

.site-footer {
	margin-top: auto;
	flex-shrink: 0;
}


/* =========================
   MEDIA
========================= */

img,
picture,
video,
canvas,
svg {
	display: block;
	max-width: 100%;
	height: auto;
}


/* =========================
   FORMS
========================= */

input,
button,
textarea,
select {
	font: inherit;
	color: inherit;
	background: transparent;
	border: none;
	outline: none;
	box-shadow: none;
}


/* убрать крестик поиска safari/chrome */

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
	display: none;
}


/* убрать стрелки number */

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
	-webkit-appearance: none;
	margin: 0;
}


/* =========================
   LINKS
========================= */

a {
	color: inherit;
	text-decoration: none;
	outline: none;
}

a:hover,
a:focus,
a:active {
	outline: none;
	text-decoration: none;
}


/* =========================
   LISTS
========================= */

ul,
ol {
	list-style: none;
}


/* =========================
   TABLES
========================= */

table {
	border-collapse: collapse;
	border-spacing: 0;
}


/* =========================
   WORDPRESS
========================= */

.wp-block-image,
figure {
	margin: 0;
}

iframe {
	border: 0;
	display: block;
	max-width: 100%;
}


@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

body {
	font-family: 'Inter', Arial, sans-serif;
	background: #f7f8fc;
}

.container {
	width: 100%;
	max-width: 1320px;
	margin: 0 auto;
	padding-left: 16px;
	padding-right: 16px;
}

.site-header {
	width: 100%;
	padding: 10px 0 0;
	position: relative;
	z-index: 100;
}

.header {
	width: 100%;
}

.header__inner {
	height: 72px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
    max-width: 1288px;
    border-bottom: 0px !important;
	background: #ffffff;
	border: 1px solid #eceef5;
	border-radius: 20px 20px 0px 0px;
	box-shadow: 0 10px 35px rgba(20, 25, 45, 0.06);
}


.header__logo {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-shrink: 0;
	color: #111827;
}

.header__logo-icon {
	width: 28px;
	height: 28px;
	border-radius: 9px;
	background: linear-gradient(135deg, #7b61ff 0%, #5636e8 100%);
	position: relative;
}

.header__logo img {
	height: 35px;
	width: auto;
	display: block;
}

.header__logo-icon::after {
	content: '';
	position: absolute;
	width: 10px;
	height: 10px;
	left: 9px;
	top: 9px;
	border-radius: 3px;
	background: #ffffff;
}

.header__logo-text {
	font-size: 24px;
	font-weight: 800;
	line-height: 1;
	letter-spacing: -0.04em;
}

.header__nav {
	flex: 1;
	display: flex;
	justify-content: center;
}

.header__menu {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 34px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.header__menu li {
	margin: 0;
	padding: 0;
}

.header__menu a {
	font-size: 15px;
	font-weight: 500;
	line-height: 1;
	color: #1f2937;
	text-decoration: none;
	white-space: nowrap;
	transition: color 0.2s ease;
}

.header__menu a:hover {
	color: #5d37e8;
}

.header__right {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-shrink: 0;
}

.header__search {
	width: 42px;
	height: 42px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: none;
	background: transparent;
	color: #111827;
	cursor: pointer;
	padding: 0;
}

.header__search svg {
	width: 24px;
	height: 24px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
}

.header__burger {
	display: none;
	width: 42px;
	height: 42px;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 5px;
	border: none;
	border-radius: 12px;
	background: #f4f5fb;
	cursor: pointer;
	padding: 0;
}

.header__burger span {
	width: 21px;
	height: 2px;
	background: #111827;
	border-radius: 10px;
}

@media (max-width: 1320px) {
	.header {
		padding-left: 16px;
		padding-right: 16px;
	}

	.header__menu {
		gap: 24px;
	}

	.header__menu a {
		font-size: 14px;
	}
}

@media (max-width: 991px) {

	.header__nav {
		display: none;
	}

	.header__burger {
		display: flex;
	}
}

@media (max-width: 575px) {


	.container, .header {
		padding-left: 10px;
		padding-right: 10px;
	}

	.header__logo-text {
		font-size: 21px;
	}

	.header__logo-icon {
		width: 26px;
		height: 26px;
	}

	.header__search {
		width: 38px;
		height: 38px;
	}
}

.site-footer {
	width: 100%;
	padding: 0px 0 18px;
	margin-top: auto;
}

.footer {
	background: #08111f;
	border-radius: 0px 0px 20px 20px;
	padding: 32px 34px 20px;
	color: #ffffff;
	box-shadow: 0 18px 45px rgba(8, 17, 31, 0.18);
}

.footer__top {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr;
	gap: 50px;
	padding-bottom: 26px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__logo {
	display: inline-flex;
	align-items: center;
	margin-bottom: 18px;
}

.footer__logo img {
	height: 34px;
	width: auto;
	display: block;
}

.footer__text {
	max-width: 260px;
	font-size: 14px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.68);
}

.footer__title {
	margin-bottom: 14px;
	font-size: 15px;
	font-weight: 700;
	color: #ffffff;
}

.footer__menu {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer__menu a {
	font-size: 14px;
	line-height: 1.2;
	color: rgba(255, 255, 255, 0.68);
	text-decoration: none;
	transition: color 0.2s ease;
}

.footer__menu a:hover {
	color: #ffffff;
}

.footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding-top: 18px;
	font-size: 13px;
	line-height: 1.4;
	color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 991px) {
	.footer {
		padding: 28px 26px 20px;
	}

	.footer__top {
		grid-template-columns: 1fr 1fr;
		gap: 34px;
	}
}

@media (max-width: 575px) {
	

	.footer {
	
		padding: 24px 20px 18px;
	}

	.footer__top {
		grid-template-columns: 1fr;
		gap: 26px;
	}

	.footer__text {
		max-width: 100%;
	}

	.footer__bottom {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}
}












.site-main {
	width: 100%;
	flex: 1 0 auto;
	margin: 0;
	padding: 0px 0 0;
}

.main-section {
	width: 100%;
	margin: 0;
	padding: 0;
}

.content {
	width: 100%;
	margin: 0;
	padding: 0px 0px 42px 0px;
	background: rgba(255, 255, 255, 0.78);
	border: 1px solid #eceef5;
	border-radius: 0px;
	box-shadow: 0 18px 55px rgba(20, 25, 45, 0.06);
}

@media (max-width: 991px) {
	.site-header {
		position: relative;
		z-index: 200;
	}

	.header__inner {
		position: relative;
	}

	.header__nav {
		display: block;
		position: absolute;
		left: 0;
		right: 0;
		top: calc(100% + 8px);
		background: #ffffff;
		border: 1px solid #eceef5;
		border-radius: 18px;
		box-shadow: 0 18px 45px rgba(20, 25, 45, 0.12);
		padding: 14px;
		opacity: 0;
		visibility: hidden;
		transform: translateY(-8px);
		pointer-events: none;
		transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
	}

	.site-header.is-menu-open .header__nav {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
		pointer-events: auto;
	}

	.header__menu {
		width: 100%;
		display: flex;
		flex-direction: column;
		align-items: stretch;
		gap: 4px;
	}

	.header__menu li {
		width: 100%;
	}

	.header__menu a {
		display: block;
		width: 100%;
		padding: 13px 14px;
		border-radius: 12px;
		font-size: 15px;
		line-height: 1.2;
	}

	.header__menu a:hover {
		background: #f4f5fb;
		text-decoration: none;
	}

	.site-header.is-menu-open .header__burger span:nth-child(1) {
		transform: translateY(7px) rotate(45deg);
	}

	.site-header.is-menu-open .header__burger span:nth-child(2) {
		opacity: 0;
	}

	.site-header.is-menu-open .header__burger span:nth-child(3) {
		transform: translateY(-7px) rotate(-45deg);
	}

	.header__burger span {
		transition: transform 0.2s ease, opacity 0.2s ease;
	}
}






.loan-main-banner {
	width: 100%;
	overflow: hidden;
	background:
		radial-gradient(circle at 42% 8%, rgba(150, 112, 255, 0.14) 0, transparent 54px),
		radial-gradient(circle at 43% 78%, rgba(102, 220, 139, 0.16) 0, transparent 78px),
		radial-gradient(circle at 86% 22%, rgba(150, 112, 255, 0.12) 0, transparent 210px),
		linear-gradient(135deg, #ffffff 0%, #fbfbff 52%, #f7fafc 100%);
}

.loan-main-banner__inner {
	position: relative;
	display: grid;
	grid-template-columns: 58% 42%;
	align-items: center;
	gap: 0px;
	    padding: 0px 152px 0 32px;
	min-height: 420px;
}

.loan-main-banner__text {
	position: relative;
	z-index: 2;
	padding-bottom: 42px;
}

.loan-main-banner__title {
	margin: 0 0 20px;
	font-size: clamp(36px, 4vw, 50px);
	font-weight: 800;
	line-height: 1.08;
	letter-spacing: -0.045em;
	color: #101828;
}

.loan-main-banner__title span {
	color: #5d37e8;
}

.loan-main-banner__desc {
	max-width: 80%;
	margin: 0 0 30px;
	font-size: 17px;
	line-height: 1.65;
	color: #667085;
}

.loan-main-banner__list {
	width: fit-content;
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin: 0;
	padding: 16px 20px;
	background: rgba(255, 255, 255, 0.78);
	border: 1px solid #e7eaf2;
	border-radius: 14px;
	box-shadow: 0 16px 42px rgba(20, 25, 45, 0.06);
	list-style: none;
}

.loan-main-banner__list li {
	position: relative;
	padding-left: 25px;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.35;
	color: #475467;
}

.loan-main-banner__list li::before {
	content: '✓';
	position: absolute;
	left: 0;
	top: 0;
	width: 16px;
	height: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 2px solid #6b4eff;
	border-radius: 50%;
	font-size: 10px;
	font-weight: 800;
	line-height: 1;
	color: #6b4eff;
	background: #ffffff;
}

.loan-main-banner__media {
	position: relative;
	z-index: 1;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	overflow: visible;
}

.loan-main-banner__media img {
	width: 100%;
	max-width: 480px;
	aspect-ratio: 1 / 1;
	height: auto;
	display: block;
	object-fit: contain;
	object-position: center;
	transform: none;
}

@media (max-width: 1100px) {
	.loan-main-banner__inner {
		grid-template-columns: 46% 54%;
		padding: 36px 32px 0;
		min-height: 380px;
	}

	.loan-main-banner__text {
		padding-bottom: 36px;
	}

	.loan-main-banner__title {
		font-size: 42px;
	}

	.loan-main-banner__desc {
		font-size: 15px;
	}

	.loan-main-banner__media img {
		max-width: 430px;
	}
}

@media (max-width: 760px) {
	.loan-main-banner__inner {
		grid-template-columns: 1fr;
		gap: 0px;
		padding: 34px 22px 0;
		min-height: auto;
	}

	.loan-main-banner__text {
		max-width: 100%;
		padding-bottom: 10px;
	}

	.loan-main-banner__desc {
		max-width: 100%;
	}

	.loan-main-banner__list {
		width: 100%;
	}

	.loan-main-banner__media {
		justify-content: center;
	}

	.loan-main-banner__media img {
		max-width: 380px;
	}
}

@media (max-width: 480px) {
	.loan-main-banner__inner {
		padding: 28px 18px 0;
	}

	.loan-main-banner__title {
		font-size: 32px;
	}

	.loan-main-banner__desc {
		margin-bottom: 22px;
		font-size: 14px;
		line-height: 1.6;
	}

	.loan-main-banner__media img {
		max-width: 320px;
	}
}

.offers-block {
	width: 100%;
	padding: 0px 18px 40px 18px;
}

.offers-filter {
	background: #ffffff;
	border: 1px solid #e7eaf2;
	border-radius: 18px;
	box-shadow: 0 14px 40px rgba(20, 25, 45, 0.06);
	padding: 18px;
	margin-bottom: 34px;
}

.offers-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-bottom: 18px;
}

.offers-tabs a {
	min-height: 42px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 24px;
	border: 1px solid #e1e5ee;
	border-radius: 10px;
	background: #ffffff;
	font-size: 14px;
	font-weight: 700;
	color: #344054;
}

.offers-tabs a.active {
	background: linear-gradient(180deg, #755cff 0%, #4d2bdc 100%);
	color: #ffffff;
	border-color: transparent;
}

.offers-filter__body {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 240px;
	gap: 18px;
	align-items: end;
}

.offers-filter__field {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.offers-filter__field label {
	font-size: 14px;
	font-weight: 600;
	color: #667085;
}

.offers-filter__field input,
.offers-filter__field select {
	height: 52px;
	width: 100%;
	border: 1px solid #dfe3ee;
	border-radius: 10px;
	background: #ffffff;
	padding: 0 16px;
	font-size: 18px;
	font-weight: 700;
	color: #101828;
}

.offers-filter__button {
	height: 52px;
	border-radius: 10px;
	background: linear-gradient(180deg, #755cff 0%, #4d2bdc 100%);
	color: #ffffff;
	font-size: 14px;
	font-weight: 800;
	cursor: pointer;
}

.offers-block__head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 24px;
}

.offers-block__head h2 {
	margin: 0 0 6px;
	font-size: 32px;
	font-weight: 800;
	line-height: 1.2;
	color: #101828;
}

.offers-block__head p {
	margin: 0;
	font-size: 15px;
	color: #667085;
}

.offers-block__head select {
	width: 220px;
	height: 46px;
	border: 1px solid #dfe3ee;
	border-radius: 10px;
	background: #ffffff;
	padding: 0 14px;
	font-size: 14px;
	font-weight: 600;
	color: #344054;
}

.offers-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 22px;
}

.offers-load-more {
	width: 300px;
	height: 48px;
	display: none;
	align-items: center;
	justify-content: center;
	margin: 28px auto 0;
	border: 1px solid #755cff;
	border-radius: 10px;
	background: #ffffff;
	color: #5d37e8;
	font-size: 14px;
	font-weight: 800;
	cursor: pointer;
}

@media (max-width: 1100px) {
	.offers-filter__body {
		grid-template-columns: 1fr 1fr;
	}

	.offers-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 820px) {
	.offers-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.offers-block__head {
		align-items: flex-start;
		flex-direction: column;
	}

	.offers-block__head select {
		width: 100%;
	}
}

@media (max-width: 575px) {
	.offers-filter {
		padding: 14px;
		border-radius: 16px;
	}

	.offers-tabs {
		gap: 8px;
	}

	.offers-tabs a {
		min-height: 38px;
		padding: 0 14px;
		font-size: 13px;
	}

	.offers-filter__body {
		grid-template-columns: 1fr;
	}

	.offers-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.offers-load-more {
		width: 100%;
	}
}

.offers-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 22px;
}

.offer-card {
	width: 100%;
	min-height: 100%;
	display: flex;
	flex-direction: column;
	padding: 24px 22px 20px;
	background: #ffffff;
	border: 1px solid #e7eaf2;
	border-radius: 18px;
	box-shadow: 0 12px 32px rgba(20, 25, 45, 0.055);
}

.offer-card__top {
	display: grid;
	grid-template-columns: 58px 1fr;
	align-items: center;
	gap: 14px;
	margin-bottom: 28px;
}

.offer-card__logo {
	width: 58px;
	height: 58px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	border-radius: 13px;
	overflow: hidden;
	background: #f5f7fb;
}

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

.offer-card__head {
	min-width: 0;
}

.offer-card__title {
	display: block;
	margin-bottom: 7px;
	font-size: 18px;
	font-weight: 800;
	line-height: 1.15;
	color: #101828;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.offer-card__rating {
	display: flex;
	align-items: center;
	gap: 5px;
	font-size: 14px;
	line-height: 1;
	color: #667085;
}

.offer-card__rating span {
	color: #f59e0b;
	font-size: 17px;
	line-height: 1;
}

.offer-card__rating b {
	font-size: 14px;
	font-weight: 700;
	color: #101828;
}

.offer-card__rating small {
	font-size: 13px;
	font-weight: 500;
	color: #667085;
}

.offer-card__params {
	display: flex;
	flex-direction: column;
	gap: 11px;
	margin-bottom: 24px;
}

.offer-card__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	font-size: 14px;
	line-height: 1.25;
}

.offer-card__row span {
	color: #667085;
}

.offer-card__row strong {
	font-size: 15px;
	font-weight: 800;
	color: #101828;
	text-align: right;
	white-space: nowrap;
}

.offer-card__button {
	width: 100%;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: auto;
	border-radius: 9px;
	background: linear-gradient(180deg, #7357ff 0%, #4c29dc 100%);
	box-shadow: 0 8px 18px rgba(93, 55, 232, 0.24);
	font-size: 14px;
	font-weight: 800;
	line-height: 1;
	color: #ffffff;
	text-decoration: none;
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.offer-card__button:hover {
	transform: translateY(-1px);
	box-shadow: 0 10px 24px rgba(93, 55, 232, 0.3);
	text-decoration: none;
}

.offer-card__more {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 15px;
	font-size: 13px;
	font-weight: 600;
	line-height: 1;
	color: #6b4eff;
	text-decoration: none;
}

.offer-card__more:hover {
	text-decoration: none;
	color: #4c29dc;
}

@media (max-width: 1100px) {
	.offers-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.offer-card {
		padding: 22px 20px 18px;
	}
}

@media (max-width: 820px) {
	.offers-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 575px) {
	.offers-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.offer-card {
		padding: 20px 18px 18px;
		border-radius: 16px;
	}

	.offer-card__top {
		grid-template-columns: 54px 1fr;
		margin-bottom: 24px;
	}

	.offer-card__logo {
		width: 54px;
		height: 54px;
	}

	.offer-card__title {
		font-size: 17px;
	}

	.offer-card__button {
		height: 46px;
	}
}

.offers-tabs__menu {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin: 0 0 18px;
	padding: 0;
	list-style: none;
}

.offers-tabs__menu a {
	min-height: 42px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 24px;
	border: 1px solid #e1e5ee;
	border-radius: 10px;
	background: #ffffff;
	font-size: 14px;
	font-weight: 700;
	color: #344054;
}

.offers-tabs__menu .current-menu-item > a,
.offers-tabs__menu .current_page_item > a,
.offers-tabs__menu .current-menu-ancestor > a {
	background: linear-gradient(180deg, #755cff 0%, #4d2bdc 100%);
	color: #ffffff;
	border-color: transparent;
}

.loan-main-banner__breadcrumbs {
	margin: 18px 0px;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.4;
	color: #667085;
}

.loan-main-banner__breadcrumbs span {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 6px;
}

.loan-main-banner__breadcrumbs a {
	color: #667085!important;
	text-decoration: none!important;
	transition: color 0.2s ease;
}

.loan-main-banner__breadcrumbs a:hover {
	color: #5d37e8;
}

.loan-main-banner__breadcrumbs .breadcrumb_last {
	color: #101828;
	font-weight: 600;
}

@media (max-width: 767px) {
	.loan-main-banner__breadcrumbs {
		margin-bottom: 14px;
		font-size: 13px;
	}
}

#filterMethod,
#offersSort {
	width: 100% !important;
	height: 52px !important;
	padding: 0 46px 0 16px !important;

	border: 1px solid #dfe3ee !important;
	border-radius: 12px !important;
	background-color: #ffffff !important;

	font-size: 15px !important;
	font-weight: 700 !important;
	color: #101828 !important;

	cursor: pointer !important;
	outline: none !important;
	box-shadow: none !important;

	-webkit-appearance: none !important;
	-moz-appearance: none !important;
	appearance: none !important;

	background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 7.5L10 12.5L15 7.5' stroke='%23667085' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
	background-repeat: no-repeat !important;
	background-position: right 16px center !important;
	background-size: 16px !important;

	transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
}

#filterMethod:hover,
#offersSort:hover {
	border-color: #cfd4e2 !important;
}

#filterMethod:focus,
#offersSort:focus {
	border-color: #6b4eff !important;
	box-shadow: 0 0 0 4px rgba(107, 78, 255, 0.10) !important;
}

#filterMethod option,
#offersSort option {
	background: #ffffff;
	color: #101828;
	font-size: 15px;
	font-weight: 500;
}

.offers-block__head select#offersSort {
	width: 220px !important;
}

@media (max-width: 820px) {
	.offers-block__head select#offersSort {
		width: 100% !important;
	}
}




.single-offer-page {
	padding: 42px 22px 48px;
	background: rgba(255, 255, 255, 0.78);
	border: 1px solid #eceef5;
	box-shadow: 0 18px 55px rgba(20, 25, 45, 0.06);
}

.single-offer-breadcrumbs {
	margin-bottom: 30px;
	font-size: 14px;
	font-weight: 500;
	color: #667085;
}

.single-offer-breadcrumbs a {
	color: #667085;
	text-decoration: none;
}

.single-offer-breadcrumbs a:hover {
	color: #5d37e8;
}

.single-offer-title {
	margin: 0 0 14px;
	font-size: 44px;
	font-weight: 800;
	line-height: 1.15;
	letter-spacing: -0.045em;
	color: #101828;
}

.single-offer-subtitle {
	margin: 0 0 34px;
	font-size: 18px;
	line-height: 1.6;
	color: #667085;
}

.single-offer-hero,
.single-offer-benefits,
.single-offer-content-block,
.single-offer-conditions,
.single-offer-steps {
	margin-bottom: 22px;
	background: #ffffff;
	border: 1px solid #e7eaf2;
	border-radius: 18px;
	box-shadow: 0 12px 32px rgba(20, 25, 45, 0.055);
}

.single-offer-hero {
	padding: 30px;
}

.single-offer-hero__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	padding-bottom: 28px;
	border-bottom: 1px solid #e7eaf2;
}

.single-offer-hero__brand {
	display: flex;
	align-items: center;
	gap: 22px;
}

.single-offer-hero__logo {
	width: 82px;
	height: 82px;
	border-radius: 18px;
	overflow: hidden;
	background: #f5f7fb;
	flex-shrink: 0;
}

.single-offer-hero__logo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.single-offer-hero__name {
	margin-bottom: 10px;
	font-size: 30px;
	font-weight: 800;
	line-height: 1.15;
	color: #101828;
}

.single-offer-hero__rating {
	display: flex;
	align-items: center;
	gap: 7px;
	font-size: 18px;
	color: #667085;
}

.single-offer-hero__rating span {
	color: #f59e0b;
}

.single-offer-hero__rating b {
	color: #101828;
}

.single-offer-hero__rating small {
	font-size: 16px;
}

.single-offer-hero__action {
	width: 330px;
	flex-shrink: 0;
}

.single-offer-button {
	width: 100%;
	height: 58px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	background: linear-gradient(180deg, #7357ff 0%, #4c29dc 100%);
	box-shadow: 0 8px 18px rgba(93, 55, 232, 0.24);
	font-size: 16px;
	font-weight: 800;
	color: #ffffff;
	text-decoration: none;
}

.single-offer-safe {
	margin-top: 16px;
	font-size: 14px;
	font-weight: 500;
	text-align: center;
	color: #667085;
}

.single-offer-stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
	padding-top: 28px;
}

.single-offer-stat {
	padding: 0 24px;
	border-right: 1px solid #e7eaf2;
}

.single-offer-stat:first-child {
	padding-left: 0;
}

.single-offer-stat:last-child {
	border-right: none;
	padding-right: 0;
}

.single-offer-stat span {
	display: block;
	margin-bottom: 9px;
	font-size: 14px;
	font-weight: 500;
	color: #667085;
}

.single-offer-stat strong {
	display: block;
	font-size: 24px;
	font-weight: 800;
	color: #101828;
}

.single-offer-benefits {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	padding: 26px 28px;
}

.single-offer-benefit {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 0 22px;
	border-right: 1px solid #e7eaf2;
}

.single-offer-benefit:first-child {
	padding-left: 0;
}

.single-offer-benefit:last-child {
	border-right: none;
	padding-right: 0;
}

.single-offer-benefit__icon,
.single-offer-step__icon {
	width: 52px;
	height: 52px;
        position: relative;
	flex-shrink: 0;
	border-radius: 50%;
	background: rgba(107, 78, 255, 0.12);
}

.single-offer-benefit strong {
	display: block;
	margin-bottom: 5px;
	font-size: 15px;
	font-weight: 800;
	color: #101828;
}

.single-offer-benefit span {
	display: block;
	font-size: 13px;
	line-height: 1.4;
	color: #667085;
}

.single-offer-content-block {
	padding: 34px 36px;
}

.single-offer-content-block h2,
.single-offer-conditions h2,
.single-offer-steps h2 {
	margin: 0 0 22px;
	font-size: 26px;
	font-weight: 800;
	line-height: 1.25;
	color: #101828;
}

.single-offer-text {
	font-size: 16px;
	line-height: 1.75;
	color: #475467;
}

.single-offer-text p {
	margin: 0 0 16px;
}

.single-offer-text ul {
	margin: 18px 0 0;
	padding: 0;
	list-style: none;
}

.single-offer-text li {
	position: relative;
	margin-bottom: 13px;
	padding-left: 28px;
}

.single-offer-text li::before {
	content: '✓';
	position: absolute;
	left: 0;
	top: 1px;
	width: 18px;
	height: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 2px solid #6b4eff;
	border-radius: 50%;
	font-size: 10px;
	font-weight: 800;
	color: #6b4eff;
}

.single-offer-conditions {
	display: grid;
	grid-template-columns: 1fr 360px;
	gap: 34px;
	padding: 34px 36px;
}

.single-offer-table {
	width: 100%;
}

.single-offer-table div {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 13px 0;
	border-bottom: 1px solid #e7eaf2;
}

.single-offer-table span {
	font-size: 15px;
	color: #667085;
}

.single-offer-table strong {
	font-size: 16px;
	font-weight: 800;
	color: #101828;
	text-align: right;
}

.single-offer-benefit__icon img, .single-offer-step__icon img {
	width: 70%;
    height: 70%;
    position: absolute;
    left: 15%;
    top: 15%;
    object-fit: contain;
    display: block;
}

.single-offer-side-card {
	display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    align-self: center;
    align-self: start;
    padding: 26px;
    border: 1px solid #e7eaf2;
    border-radius: 18px;
    box-shadow: 0 12px 32px rgba(20, 25, 45, 0.055);
	
}

.single-offer-side-card__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 18px;
}

.single-offer-side-card__row span {
	color: #667085;
}

.single-offer-side-card__row strong {
	font-size: 17px;
	font-weight: 800;
	color: #101828;
	text-align: right;
}

.single-offer-steps {
	padding: 34px 36px;
}

.single-offer-steps__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
}

.single-offer-step {
	min-height: 140px;
	padding: 22px;
	border: 1px solid #e7eaf2;
	border-radius: 14px;
}

.single-offer-step__icon {
	margin-bottom: 14px;
}

.single-offer-step strong {
	display: block;
	margin-bottom: 8px;
	font-size: 15px;
	font-weight: 800;
	color: #101828;
}

.single-offer-step span {
	display: block;
	font-size: 13px;
	line-height: 1.5;
	color: #667085;
}

@media (max-width: 991px) {
	.single-offer-title {
		font-size: 36px;
	}

	.single-offer-hero__top {
		align-items: flex-start;
		flex-direction: column;
	}

	.single-offer-hero__action {
		width: 100%;
	}

	.single-offer-stats,
	.single-offer-benefits {
		grid-template-columns: repeat(2, 1fr);
		gap: 22px;
	}

	.single-offer-stat,
	.single-offer-benefit {
		padding: 0;
		border-right: none;
	}

	.single-offer-conditions {
		grid-template-columns: 1fr;
	}

	.single-offer-steps__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 575px) {
	.single-offer-page {
		padding: 28px 14px 36px;
	}

	.single-offer-title {
		font-size: 30px;
	}

	.single-offer-subtitle {
		font-size: 15px;
	}

	.single-offer-hero,
	.single-offer-content-block,
	.single-offer-conditions,
	.single-offer-steps {
		padding: 24px 18px;
		border-radius: 16px;
	}

	.single-offer-hero__brand {
		align-items: flex-start;
		gap: 14px;
	}

	.single-offer-hero__logo {
		width: 58px;
		height: 58px;
		border-radius: 13px;
	}

	.single-offer-hero__name {
		font-size: 24px;
	}

	.single-offer-stats,
	.single-offer-benefits,
	.single-offer-steps__grid {
		grid-template-columns: 1fr;
	}

	.single-offer-stat {
		padding-bottom: 14px;
		border-bottom: 1px solid #e7eaf2;
	}

	.single-offer-stat strong {
		font-size: 20px;
	}

	.single-offer-table div,
	.single-offer-side-card__row {
		align-items: flex-start;
		flex-direction: column;
		gap: 6px;
	}

	.single-offer-side-card {
		padding: 22px 18px;
	}
}

.cookie-notice {
	position: fixed;
	bottom: 22px;
	left: 50%;
	transform: translateX(-50%);
	width: calc(100% - 32px);
	max-width: 1288px;
	z-index: 9999;
	display: none;
}

.cookie-notice.is-visible {
	display: block;
}

.cookie-notice__inner {
	width: 100%;
	max-width: 1288px;
	margin: 0 auto;
	padding: 18px 20px;
	display: grid;
	grid-template-columns: 44px 1fr auto;
	align-items: center;
	gap: 16px;

	background: rgba(255, 255, 255, 0.96);
	border: 1px solid #e7eaf2;
	border-radius: 18px;
	box-shadow: 0 18px 55px rgba(20, 25, 45, 0.14);
	backdrop-filter: blur(12px);
}

.cookie-notice__icon {
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 14px;
	background: linear-gradient(180deg, #755cff 0%, #4d2bdc 100%);
	color: #ffffff;
	font-size: 18px;
	font-weight: 800;
	font-style: italic;
}

.cookie-notice__text {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.cookie-notice__text strong {
	font-size: 16px;
	font-weight: 800;
	line-height: 1.25;
	color: #101828;
}

.cookie-notice__text span {
	max-width: 820px;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.55;
	color: #667085;
}

.cookie-notice__button {
	height: 46px;
	min-width: 140px;
	padding: 0 22px;
	border: none;
	border-radius: 10px;
	background: linear-gradient(180deg, #755cff 0%, #4d2bdc 100%);
	box-shadow: 0 8px 18px rgba(93, 55, 232, 0.24);
	color: #ffffff;
	font-size: 14px;
	font-weight: 800;
	cursor: pointer;
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.cookie-notice__button:hover {
	transform: translateY(-1px);
	box-shadow: 0 10px 24px rgba(93, 55, 232, 0.3);
}

@media (max-width: 767px) {
	.cookie-notice {
		bottom: 12px;
		width: calc(100% - 20px);
	}

	.cookie-notice__inner {
		grid-template-columns: 38px 1fr;
		gap: 12px;
		padding: 16px;
		border-radius: 16px;
	}

	.cookie-notice__icon {
		width: 38px;
		height: 38px;
		border-radius: 12px;
	}

	.cookie-notice__button {
		grid-column: 1 / -1;
		width: 100%;
		min-width: 0;
		height: 44px;
	}

	.cookie-notice__text strong {
		font-size: 15px;
	}

	.cookie-notice__text span {
		font-size: 13px;
		line-height: 1.5;
	}
}

.offers-tabs {
	width: 100%;
	margin-bottom: 18px;
	overflow: hidden;
}

.offers-tabs__menu {
	width: 100%;
	display: flex;
	flex-wrap: nowrap;
	gap: 14px;
	margin: 0;
	padding: 0 0 10px;
	list-style: none;

	overflow-x: auto;
	overflow-y: hidden;

	scrollbar-width: thin;
	scrollbar-color: #755cff #edf0f7;

	-webkit-overflow-scrolling: touch;
}

.offers-tabs__menu li {
	flex: 0 0 auto;
	margin: 0;
	padding: 0;
}

.offers-tabs__menu a {
	min-height: 42px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 24px;

	border: 1px solid #e1e5ee;
	border-radius: 10px;
	background: #ffffff;

	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	color: #344054;
	text-decoration: none;
	white-space: nowrap;

	transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.offers-tabs__menu a:hover {
	border-color: #c9c0ff;
	color: #5d37e8;
	box-shadow: 0 8px 18px rgba(93, 55, 232, 0.08);
}

.offers-tabs__menu .current-menu-item > a,
.offers-tabs__menu .current_page_item > a,
.offers-tabs__menu .current-menu-ancestor > a {
	background: linear-gradient(180deg, #755cff 0%, #4d2bdc 100%);
	border-color: transparent;
	color: #ffffff;
}

.offers-tabs__menu::-webkit-scrollbar {
	height: 8px;
}

.offers-tabs__menu::-webkit-scrollbar-track {
	background: #edf0f7;
	border-radius: 999px;
}

.offers-tabs__menu::-webkit-scrollbar-thumb {
	background: linear-gradient(90deg, #755cff 0%, #4d2bdc 100%);
	border-radius: 999px;
}

.offers-tabs__menu::-webkit-scrollbar-thumb:hover {
	background: #4d2bdc;
}

@media (max-width: 575px) {
	.offers-tabs {
		margin-bottom: 14px;
	}

	.offers-tabs__menu {
		gap: 8px;
		padding-bottom: 8px;
	}

	.offers-tabs__menu a {
		min-height: 38px;
		padding: 0 14px;
		font-size: 13px;
		border-radius: 9px;
	}
}

.home-products {
	width: 100%;
    padding: 0px 18px;
}

.home-products__categories {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
	margin-bottom: 28px;
}

.home-category-card {
	min-height: 138px;
	display: flex;
	gap: 16px;
	padding: 22px;
	background: #ffffff;
	border: 1px solid #e7eaf2;
	border-radius: 16px;
	box-shadow: 0 10px 28px rgba(20, 25, 45, 0.05);
	text-decoration: none;
	color: inherit;
	transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.home-category-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 16px 38px rgba(20, 25, 45, 0.08);
}

.home-category-card__icon {
	width: 58px;
	height: 58px;
	flex-shrink: 0;
	border-radius: 14px;
	overflow: hidden;
	background: #f5f7fb;
}

.home-category-card__icon img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.home-category-card h3, .home-category-card h2 {
	margin: 0 0 6px;
	font-size: 17px;
	font-weight: 800;
	line-height: 1.25;
	color: #101828;
}

.home-category-card p {
	margin: 0 0 18px;
	font-size: 13px;
	font-weight: 500;
	line-height: 1.4;
	color: #667085;
}

.home-category-card span {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 38px;
	padding: 0 16px;
	border-radius: 9px;
	background: #f7f5ff;
	font-size: 13px;
	font-weight: 800;
	color: #5d37e8;
}

.home-products-section {
	margin-bottom: 34px;
}

.home-products-section__head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 18px;
}

.home-products-section__head h2 {
	margin: 0 0 6px;
	font-size: 28px;
	font-weight: 800;
	line-height: 1.2;
	color: #101828;
}

.home-products-section__head p {
	margin: 0;
	font-size: 14px;
	font-weight: 500;
	color: #667085;
}

.home-products-section__head a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 800;
	color: #5d37e8;
	text-decoration: none;
	white-space: nowrap;
}

.home-products-section__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
}

@media (max-width: 1199px) {
	.home-products__categories,
	.home-products-section__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 575px) {
	.home-products__categories,
	.home-products-section__grid {
		grid-template-columns: 1fr;
	}

	.home-products-section__head {
		align-items: flex-start;
		flex-direction: column;
	}

	.home-category-card {
		padding: 18px;
	}

	.home-products-section__head h2 {
		font-size: 24px;
	}
}



.faq-title{
font-size:34px;
font-weight:800;
margin-bottom:24px;
color:#101828;
}

.faq-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:24px;
}

.faq-item{
background:#fff;
border:1px solid #e9edf5;
border-radius:14px;
margin-bottom:12px;
overflow:hidden;
}

.faq-question{
width:100%;
border:none;
background:none;
padding:20px;
text-align:left;
font-size:16px;
font-weight:700;
cursor:pointer;
position:relative;
}

.faq-question:after{
content:"+";
position:absolute;
right:20px;
top:50%;
transform:translateY(-50%);
font-size:22px;
color:#6f46ff;
}

.faq-item.active .faq-question:after{
content:"−";
}

.faq-answer{
display:none;
padding:0 20px 20px;
font-size:15px;
line-height:1.6;
color:#667085;
}

.faq-item.active .faq-answer{
display:block;
}

.advantages-section{
margin:32px 0;
}

.advantages-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
}

.adv-card{
display:flex;
gap:16px;
align-items:flex-start;
padding:24px;
background:#fff;
border:1px solid #e9edf5;
border-radius:18px;
}

.adv-icon{
width:52px;
height:52px;
border-radius:50%;
background:#f5f7fc;
display:flex;
align-items:center;
justify-content:center;
font-size:24px;
flex-shrink:0;
}

.adv-card h3{
font-size:18px;
margin:0 0 8px;
font-weight:700;
}

.adv-card p{
margin:0;
font-size:14px;
line-height:1.5;
color:#667085;
}



.seo-text-wrap{
background:#fff;
padding:34px;
border-radius:18px;
border:1px solid #e9edf5;
}

.seo-text-wrap h2{
font-size:30px;
margin-bottom:20px;
}

.seo-text-wrap h3{
font-size:22px;
margin:28px 0 14px;
}

.seo-text-wrap p{
font-size:16px;
line-height:1.75;
color:#475467;
margin:0 0 16px;
}

.seo-text-wrap a{
color: #5d37e8;
    text-decoration: underline;
}

@media(max-width:991px){
.faq-grid,
.advantages-grid{
grid-template-columns:1fr;
}
}

@media(max-width:767px){
.faq-title{
font-size:28px;
}
.seo-text-wrap{
padding:24px;
}
}

.page-inner-offset{
	padding: 30px 18px 100px 18px;
}

.seo-text-wrap ul,
.seo-text-wrap ol{
	margin:0 0 16px;
	padding-left:24px;
	font-size:16px;
	line-height:1.75;
	color:#475467;
}

.seo-text-wrap ul{
	list-style:disc;
}

.seo-text-wrap ol{
	list-style:decimal;
}

.seo-text-wrap li{
	margin:0 0 8px;
	font-size:16px;
	line-height:1.75;
	color:#475467;
}

.seo-text-wrap ul li::marker,
.seo-text-wrap ol li::marker{
	color:#475467;
}


.page-inner-offset p{
	margin:0 0 16px;
	font-size:16px;
	line-height:1.75;
	color:#475467;
}

.page-inner-offset h1 {
    margin: 0px 0px 20px 0px;
}

.page-inner-offset h2{
	margin:0 0 20px;
	font-size:30px;
	line-height:1.3;
	font-weight:800;
	color:#101828;
}



.page-inner-offset h3{
	margin:28px 0 14px;
	font-size:22px;
	line-height:1.35;
	font-weight:700;
	color:#101828;
}

.page-inner-offset ul,
.page-inner-offset ol{
	margin:0 0 16px;
	padding-left:24px;
	font-size:16px;
	line-height:1.75;
	color:#475467;
}

.page-inner-offset ul{
	list-style:disc;
}

.page-inner-offset ol{
	list-style:decimal;
}

.page-inner-offset li{
	margin:0 0 8px;
	font-size:16px;
	line-height:1.75;
	color:#475467;
}

.page-inner-offset ul li::marker,
.page-inner-offset ol li::marker{
	color:#475467;
}

.page-inner-offset a{
	color:#5d37e8;
	text-decoration: underline;
}

.page-inner-offset a:hover{
	text-decoration:underline;
}

.archive-posts-grid{
	display:grid;
	grid-template-columns:repeat(4,1fr);
	gap:18px;
	margin-top:24px;
}

.archive-post-card{
	display:block;
	background:#ffffff;
	border:1px solid #e7eaf2;
	border-radius:18px;
	overflow:hidden;
	text-decoration:none;
	box-shadow:0 12px 32px rgba(20,25,45,0.055);
	transition:transform .18s ease, box-shadow .18s ease;
}

.archive-post-card:hover{
	transform:translateY(-2px);
	box-shadow:0 16px 42px rgba(20,25,45,0.09);
}

.archive-post-card__image{
	width:100%;
	aspect-ratio:16/10;
	background:#f5f7fb;
	overflow:hidden;
}

.archive-post-card__image img{
	width:100%;
	height:100%;
	display:block;
	object-fit:cover;
}

.archive-post-card__placeholder{
	width:100%;
	height:100%;
	display:flex;
	align-items:center;
	justify-content:center;
	font-size:14px;
	font-weight:700;
	color:#98a2b3;
}

.archive-post-card__content{
	padding:18px;
}

.archive-post-card__content h2{
	margin:0;
	font-size:18px;
	font-weight:800;
	line-height:1.35;
	color:#101828;
}

.archive-pagination{
	display:flex;
	align-items:center;
	justify-content:center;
	flex-wrap:wrap;
	gap:8px;
	margin-top:30px;
}

.archive-pagination .page-numbers{
	min-width:40px;
	height:40px;
	padding:0 12px;
	display:flex;
	align-items:center;
	justify-content:center;
	border:1px solid #e7eaf2;
	border-radius:10px;
	background:#ffffff;
	font-size:14px;
	font-weight:800;
	color:#344054;
	text-decoration:none;
}

.archive-pagination .page-numbers.current{
	background:linear-gradient(180deg,#755cff 0%,#4d2bdc 100%);
	color:#ffffff;
	border-color:transparent;
}

a.archive-post-card {
    text-decoration: none!important;
}

.archive-pagination a.page-numbers:hover{
	color:#5d37e8;
	border-color:#c9c0ff;
}

@media(max-width:1199px){
	.archive-posts-grid{
		grid-template-columns:repeat(3,1fr);
	}
}

@media(max-width:767px){
	.archive-posts-grid{
		grid-template-columns:repeat(2,1fr);
	}
}

@media(max-width:575px){
	.archive-posts-grid{
		grid-template-columns:1fr;
	}
}

.site-search-form{
	display:grid;
	grid-template-columns:1fr auto;
	gap:12px;
	margin:24px 0 22px;
	padding:14px;
	background:#ffffff;
	border:1px solid #e7eaf2;
	border-radius:16px;
	box-shadow:0 12px 32px rgba(20,25,45,0.055);
}

.site-search-form input{
	width:100%;
	height:48px;
	padding:0 16px;
	border:1px solid #e1e5ee;
	border-radius:10px;
	background:#f9fafc;
	font-size:15px;
	font-weight:500;
	color:#101828;
	outline:none;
}

.site-search-form input:focus{
	border-color:#755cff;
	background:#ffffff;
	box-shadow:0 0 0 4px rgba(117,92,255,0.10);
}

.site-search-form button{
	height:48px;
	padding:0 26px;
	border:none;
	border-radius:10px;
	background:linear-gradient(180deg,#755cff 0%,#4d2bdc 100%);
	color:#ffffff;
	font-size:14px;
	font-weight:800;
	cursor:pointer;
	box-shadow:0 8px 18px rgba(93,55,232,0.24);
}

.search-page__summary{
	margin:0 0 18px;
	font-size:15px;
	line-height:1.6;
	color:#667085;
}

.search-page__summary strong{
	color:#101828;
	font-weight:800;
}

.search-results-list{
	display:flex;
	flex-direction:column;
	gap:14px;
	margin-top:18px;
}

.search-result-item{
	padding:22px;
	background:#ffffff;
	border:1px solid #e7eaf2;
	border-radius:16px;
	box-shadow:0 10px 28px rgba(20,25,45,0.05);
}

.search-result-item__title{
	margin:0 0 10px;
	font-size:22px;
	line-height:1.3;
	font-weight:800;
}

.search-result-item__title a{
	color:#101828;
	text-decoration:none;
}

.search-result-item__title a:hover{
	color:#5d37e8;
}

.search-result-item__excerpt{
	margin:0 0 14px;
	font-size:15px;
	line-height:1.65;
	color:#667085;
}

.search-result-item__excerpt p{
	margin:0;
}

.search-result-item__link{
	display:inline-flex;
	align-items:center;
	min-height:40px;
	padding:0 16px;
	border-radius:9px;
	background:#f7f5ff;
	color:#5d37e8;
	font-size:14px;
	font-weight:800;
	text-decoration:none;
}

.search-result-item__link:hover{
	background:#efeaff;
}

.search-pagination{
	display:flex;
	align-items:center;
	justify-content:center;
	flex-wrap:wrap;
	gap:8px;
	margin-top:28px;
}

.search-pagination .page-numbers{
	min-width:40px;
	height:40px;
	padding:0 12px;
	display:flex;
	align-items:center;
	justify-content:center;
	border:1px solid #e7eaf2;
	border-radius:10px;
	background:#ffffff;
	font-size:14px;
	font-weight:800;
	color:#344054;
	text-decoration:none;
}

.search-pagination .page-numbers.current{
	background:linear-gradient(180deg,#755cff 0%,#4d2bdc 100%);
	color:#ffffff;
	border-color:transparent;
}

.search-pagination a.page-numbers:hover{
	color:#5d37e8;
	border-color:#c9c0ff;
}

.search-empty{
	margin-top:20px;
	padding:26px;
	background:#ffffff;
	border:1px solid #e7eaf2;
	border-radius:16px;
	box-shadow:0 10px 28px rgba(20,25,45,0.05);
}

.search-empty h2{
	margin:0 0 10px;
	font-size:24px;
	font-weight:800;
	color:#101828;
}

.search-empty p{
	margin:0 0 18px;
	font-size:15px;
	line-height:1.65;
	color:#667085;
}

.search-empty a{
	display:inline-flex;
	align-items:center;
	min-height:42px;
	padding:0 18px;
	border-radius:10px;
	background:linear-gradient(180deg,#755cff 0%,#4d2bdc 100%);
	color:#ffffff;
	font-size:14px;
	font-weight:800;
	text-decoration:none;
	box-shadow:0 8px 18px rgba(93,55,232,0.24);
}

@media(max-width:575px){
	.site-search-form{
		grid-template-columns:1fr;
		padding:12px;
	}

	.site-search-form button{
		width:100%;
	}

	.search-result-item{
		padding:18px;
	}

	.search-result-item__title{
		font-size:20px;
	}
}
