/* Archive produits POL'HOP - à ajouter dans style.css du thème enfant ou Apparence > Personnaliser > CSS additionnel */

.polhop-archive {
	background: #f7fbfc;
	color: #1d3557;
}

.polhop-container {
	width: min(1180px, calc(100% - 40px));
	margin: 0 auto;
}

.polhop-hero {
	padding: 70px 0 46px;
	background: linear-gradient(135deg, #eaf8ee 0%, #eef8fc 100%);
}

.polhop-eyebrow {
	margin: 0 0 10px;
	color: #50b848;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .08em;
}

.polhop-hero h1 {
	margin: 0 0 16px;
	font-size: clamp(34px, 5vw, 58px);
	line-height: 1.05;
	color: #1d3557;
}

.polhop-hero p {
	max-width: 760px;
	margin: 0;
	font-size: 18px;
	line-height: 1.65;
	color: #425466;
}

.polhop-filters-section {
	margin-top: -24px;
	position: relative;
	z-index: 2;
}

.polhop-filters {
	display: grid;
	grid-template-columns: 1.4fr 1fr auto;
	gap: 18px;
	align-items: end;
	padding: 22px;
	background: #fff;
	border: 1px solid #e5eef3;
	border-radius: 20px;
	box-shadow: 0 12px 34px rgba(29, 53, 87, .08);
}

.polhop-field label {
	display: block;
	margin-bottom: 7px;
	font-size: 14px;
	font-weight: 700;
	color: #1d3557;
}

.polhop-field input,
.polhop-field select {
	width: 100%;
	min-height: 46px;
	border: 1px solid #d9e6ec;
	border-radius: 12px;
	padding: 0 14px;
	background: #fff;
	color: #1d3557;
}

.polhop-filter-actions {
	display: flex;
	gap: 10px;
	align-items: center;
}

.polhop-filter-actions button,
.polhop-filter-actions a {
	min-height: 46px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	padding: 0 18px;
	font-weight: 700;
	text-decoration: none;
}

.polhop-filter-actions button {
	border: 0;
	background: #35aee2;
	color: #fff;
	cursor: pointer;
}

.polhop-filter-actions a {
	background: #eef8fc;
	color: #1d3557;
}

.polhop-results {
	padding: 46px 0 60px;
}

.polhop-count {
	margin-bottom: 22px;
	font-weight: 700;
	color: #425466;
}

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

.polhop-card {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	background: #fff;
	border: 1px solid #e5eef3;
	border-radius: 22px;
	box-shadow: 0 10px 28px rgba(29, 53, 87, .07);
	transition: transform .22s ease, box-shadow .22s ease;
}

.polhop-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 40px rgba(29, 53, 87, .12);
}

.polhop-card-image {
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 4 / 3;
	padding: 24px;
	background: #f2fafc;
	text-decoration: none;
}

.polhop-card-image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.polhop-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px dashed #cde2eb;
	border-radius: 16px;
	color: #50b848;
	font-weight: 800;
	letter-spacing: .08em;
}

.polhop-card-content {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 22px;
}

.polhop-card-terms {
	margin-bottom: 10px;
	font-size: 12px;
	font-weight: 800;
	color: #50b848;
	text-transform: uppercase;
	letter-spacing: .05em;
}

.polhop-card-title {
	margin: 0 0 14px;
	font-size: 21px;
	line-height: 1.25;
}

.polhop-card-title a {
	color: #1d3557;
	text-decoration: none;
}

.polhop-card-title a:hover {
	color: #35aee2;
}

.polhop-card-meta {
	display: grid;
	gap: 6px;
	margin-bottom: 14px;
	font-size: 14px;
	color: #425466;
}

.polhop-card-meta p {
	margin: 0;
}

.polhop-card-meta strong {
	color: #1d3557;
}

.polhop-card-desc {
	margin: 0 0 20px;
	color: #566b7a;
	line-height: 1.55;
}

.polhop-card-button {
	margin-top: auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	border-radius: 999px;
	padding: 10px 18px;
	background: #35aee2;
	color: #fff;
	font-weight: 800;
	text-decoration: none;
}

.polhop-card-button:hover {
	background: #1d3557;
	color: #fff;
}

.polhop-pagination {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 38px;
	flex-wrap: wrap;
}

.polhop-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 42px;
	padding: 0 12px;
	border-radius: 999px;
	background: #fff;
	border: 1px solid #d9e6ec;
	color: #1d3557;
	font-weight: 700;
	text-decoration: none;
}

.polhop-pagination .page-numbers.current,
.polhop-pagination .page-numbers:hover {
	background: #1d3557;
	color: #fff;
}

.polhop-empty {
	padding: 42px;
	background: #fff;
	border-radius: 20px;
	text-align: center;
}

.polhop-empty a,
.polhop-cta a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	padding: 12px 20px;
	background: #35aee2;
	color: #fff;
	font-weight: 800;
	text-decoration: none;
}

.polhop-cta {
	margin-bottom: 70px;
	padding: 42px;
	border-radius: 24px;
	background: #1d3557;
	color: #fff;
	text-align: center;
}

.polhop-cta h2 {
	margin: 0 0 10px;
	color: #fff;
	font-size: clamp(26px, 4vw, 38px);
}

.polhop-cta p {
	margin: 0 0 22px;
	color: rgba(255,255,255,.85);
}

.polhop-cta a:hover {
	background: #50b848;
	color: #fff;
}

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

	.polhop-filters {
		grid-template-columns: 1fr 1fr;
	}

	.polhop-filter-actions {
		grid-column: 1 / -1;
	}
}

@media (max-width: 640px) {
	.polhop-container {
		width: min(100% - 28px, 1180px);
	}

	.polhop-hero {
		padding: 48px 0 38px;
	}

	.polhop-filters {
		grid-template-columns: 1fr;
		padding: 18px;
	}

	.polhop-filter-actions {
		flex-direction: column;
		align-items: stretch;
	}

	.polhop-grid {
		grid-template-columns: 1fr;
	}

	.polhop-cta {
		padding: 30px 20px;
	}
}
