body.post-type-archive-icango_product,
body.post-type-archive-icango_product #page,
body.post-type-archive-icango_product .site,
body.post-type-archive-icango_product #content,
body.post-type-archive-icango_product .site-content,
body.post-type-archive-icango_product .content-area,
body.post-type-archive-icango_product .woostify-container {
	background: #f6f8fb;
}

.icango-product-archive {
	background: #f6f8fb;
	color: #111827;
}

.icango-product-archive__inner {
	width: min(1280px, calc(100vw - 64px));
	margin-right: auto;
	margin-left: auto;
	box-sizing: border-box;
}

.icango-product-archive__hero {
	padding: 14px 0 0;
}

.icango-product-archive__hero .icango-product-archive__inner {
	padding: 24px 36px 26px;
	background: linear-gradient(135deg, #f7fbff 0%, #eef4ff 100%);
	border: 1px solid #dbe7ff;
	border-radius: 12px;
}

.icango-product-archive__hero .icango-product-archive__inner::before {
	display: block;
	width: 38px;
	height: 2px;
	margin-bottom: 10px;
	background: #2563eb;
	border-radius: 999px;
	content: "";
}

.icango-product-archive__hero h1 {
	max-width: 700px;
	margin: 0;
	font-size: clamp(2rem, 3vw, 2.625rem);
	line-height: 1.06;
	letter-spacing: -0.03em;
	text-wrap: balance;
	word-break: normal;
	overflow-wrap: normal;
	hyphens: none;
}

.icango-product-archive__hero p {
	max-width: 720px;
	margin: 10px 0 0;
	color: #4b5563;
	font-size: 1rem;
	line-height: 1.55;
}

.icango-product-archive__list {
	padding: 22px 0 72px;
}

.icango-product-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.icango-product-card {
	display: flex;
	flex-direction: column;
	min-height: 100%;
	overflow: hidden;
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
}

.icango-product-card__media {
	display: block;
	background: #f8fafc;
}

.icango-product-card__image {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 4 / 3;
	object-fit: contain;
}

.icango-product-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 24px;
}

.icango-product-card__model {
	margin: 0 0 10px;
	color: #2563eb;
	font-size: 0.8125rem;
	font-weight: 700;
	text-transform: uppercase;
}

.icango-product-card__title {
	margin: 0;
	font-size: 1.35rem;
	line-height: 1.25;
	word-break: normal;
	overflow-wrap: normal;
	hyphens: none;
}

.icango-product-card__title a {
	color: #111827;
	text-decoration: none;
}

.icango-product-card__title a:hover,
.icango-product-card__title a:focus {
	color: #2563eb;
}

.icango-product-card__tagline {
	margin: 14px 0 0;
	color: #4b5563;
	line-height: 1.65;
}

.icango-product-card__points {
	display: grid;
	gap: 8px;
	margin: 18px 0 0;
	padding: 0;
	list-style: none;
}

.icango-product-card__points li {
	position: relative;
	padding-left: 18px;
	color: #374151;
	line-height: 1.55;
}

.icango-product-card__points li::before {
	position: absolute;
	top: 0.7em;
	left: 0;
	width: 6px;
	height: 6px;
	background: #2563eb;
	border-radius: 50%;
	content: "";
}

.icango-product-card__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	margin-top: auto;
	padding: 10px 18px;
	border: 1px solid #2563eb;
	border-radius: 6px;
	color: #2563eb;
	font-weight: 700;
	text-decoration: none;
}

.icango-product-card__tagline + .icango-product-card__link,
.icango-product-card__title + .icango-product-card__link {
	margin-top: 24px;
}

.icango-product-card__points + .icango-product-card__link {
	margin-top: 24px;
}

.icango-product-card__link:hover,
.icango-product-card__link:focus {
	background: #2563eb;
	color: #fff;
}

.icango-product-pagination {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: center;
	margin-top: 40px;
}

.icango-product-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	min-height: 42px;
	padding: 8px 12px;
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 6px;
	color: #111827;
	text-decoration: none;
}

.icango-product-pagination .current,
.icango-product-pagination a:hover,
.icango-product-pagination a:focus {
	background: #2563eb;
	border-color: #2563eb;
	color: #fff;
}

.icango-product-empty {
	padding: 40px;
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	box-sizing: border-box;
	text-align: center;
}

.icango-product-empty p {
	margin: 0;
	color: #4b5563;
	font-size: 1.0625rem;
	line-height: 1.6;
}

@media (max-width: 1024px) {
	.icango-product-archive__hero .icango-product-archive__inner {
		padding: 22px 32px 24px;
	}

	.icango-product-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 600px) {
	.icango-product-archive__inner {
		width: calc(100vw - 24px);
	}

	.icango-product-archive__hero {
		padding: 10px 0 0;
	}

	.icango-product-archive__hero .icango-product-archive__inner {
		padding: 18px 18px 20px;
		border-radius: 12px;
	}

	.icango-product-archive__hero .icango-product-archive__inner::before {
		width: 32px;
		margin-bottom: 9px;
	}

	.icango-product-archive__hero h1 {
		max-width: 100%;
		font-size: clamp(1.75rem, 7vw, 2.125rem);
		line-height: 1.1;
		word-break: normal;
		overflow-wrap: normal;
		hyphens: none;
	}

	.icango-product-archive__hero p {
		font-size: 1rem;
	}

	.icango-product-archive__list {
		padding: 16px 0 48px;
	}

	.icango-product-grid {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.icango-product-card__body {
		padding: 20px;
	}

	.icango-product-card__link {
		width: 100%;
	}
}
