/* Custom footer (see footer.php) — dark full-bleed background, brand block
   + 3 link columns, payment icons, bottom disclaimer/copyright line. */

.pp-footer {
	background: #0b1220;
	color: #b8c0cc;
	padding: 64px 24px 32px;
}

.pp-footer__container {
	max-width: 1160px;
	margin: 0 auto;
}

.pp-footer__grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr;
	gap: 40px;
	margin-bottom: 40px;
}

.pp-footer__logo {
	display: block;
	width: auto;
	height: 70px;
	margin: 0 0 20px;
}

.pp-footer__desc {
	font-size: 15px;
	line-height: 1.7;
	color: #8a93a3;
	margin: 0 0 20px;
	max-width: 32ch;
}

.pp-footer__email {
	display: block;
	font-size: 15px;
	color: #dfe3e8;
	text-decoration: none;
	margin-bottom: 20px;
}

.pp-footer__email:hover {
	color: #c9a24b;
}

.pp-footer__socials {
	display: flex;
	gap: 14px;
}

.pp-footer__socials a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.06);
	color: #b8c0cc;
	transition: background 0.15s ease, color 0.15s ease;
}

.pp-footer__socials a:hover {
	background: #c9a24b;
	color: #0b1220;
}

.pp-footer__socials svg {
	width: 16px;
	height: 16px;
}

.pp-footer__col-title {
	font-size: 17px;
	font-weight: 700;
	color: #fff;
	margin: 0 0 18px;
}

.pp-footer__col ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.pp-footer__col a {
	font-size: 15px;
	color: #8a93a3;
	text-decoration: none;
	transition: color 0.15s ease;
}

.pp-footer__col a:hover {
	color: #fff;
}

.pp-footer__payments {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	padding-top: 32px;
	text-align: center;
}

.pp-footer__payments-title {
	margin: 0 0 16px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #6b7280;
}

.pp-footer__payments-icons {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 14px;
	max-width: 700px;
	margin: 0 auto;
}

.pp-footer__payments-icons .ct-icon-container {
	display: flex;
	border-radius: 6px;
	overflow: hidden;
}

.pp-footer__payments-icons img,
.pp-footer__payments-icons svg {
	width: 28px;
	height: 28px;
}

.pp-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	margin-top: 32px;
	padding-top: 24px;
	text-align: center;
}

.pp-footer__bottom p {
	margin: 0;
	font-size: 13px;
	line-height: 1.7;
	color: #6b7280;
}

@media ( max-width: 900px ) {
	.pp-footer__grid {
		grid-template-columns: 1fr 1fr;
	}

	.pp-footer__brand {
		grid-column: 1 / -1;
	}
}

@media ( max-width: 560px ) {
	.pp-footer__grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.pp-footer__brand {
		grid-column: auto;
	}
}
