.pkhb-footer {
	--pkhb-ft-heading: #1f2733;
	--pkhb-ft-text: #4b5563;
	--pkhb-ft-link: #4b5563;
	--pkhb-ft-link-hover: #1f2733;
	--pkhb-ft-icon: #f6b100;
	--pkhb-ft-border: #e7eaef;
	max-width: 1400px;
	margin: 0 auto;
	padding: 48px 24px 24px;
	color: var(--pkhb-ft-text);
	text-align: left;
}

.pkhb-footer__grid {
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr 1fr;
	gap: 32px 40px;
	padding-bottom: 32px;
}

.pkhb-footer__heading {
	margin: 0 0 22px;
	font-size: 16px;
	font-weight: 700;
	color: var(--pkhb-ft-heading);
}

.pkhb-footer__contact,
.pkhb-footer__links {
	list-style: none;
	margin: 0;
	padding: 0;
}

.pkhb-footer__contact li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 14px;
	font-size: 14px;
	line-height: 1.5;
}

.pkhb-footer__icon {
	flex: 0 0 auto;
	margin-top: 2px;
	color: var(--pkhb-ft-icon);
}

.pkhb-footer__contact a {
	color: var(--pkhb-ft-link);
	text-decoration: none;
}

.pkhb-footer__contact a:hover {
	color: var(--pkhb-ft-link-hover);
}

.pkhb-footer__links li {
	margin-bottom: 14px;
}

.pkhb-footer__links a,
.pkhb-footer__links span {
	font-size: 14px;
	color: var(--pkhb-ft-link);
	text-decoration: none;
	transition: color 0.2s ease;
}

.pkhb-footer__links a:hover {
	color: var(--pkhb-ft-link-hover);
}

.pkhb-footer__socials {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

/* Scoped with the block class so the theme's own `.footer-container a` colour
   rule can't win over these. */
.pkhb-footer .pkhb-footer__social {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	overflow: hidden;
	color: #fff;
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.pkhb-footer .pkhb-footer__social:hover {
	transform: translateY(-2px);
	opacity: 0.9;
	color: #fff;
}

/* Uploaded logos usually ship their own badge, so drop the brand colour behind
   them. White backs the ones that are a bare transparent glyph (e.g. TikTok). */
.pkhb-footer .pkhb-footer__social.has-image {
	background: #fff;
}

.pkhb-footer__social img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

.pkhb-footer__social--facebook {
	background: #1877f2;
}

.pkhb-footer__social--tiktok {
	background: #000;
}

.pkhb-footer__social--x {
	background: #000;
}

.pkhb-footer__social--youtube {
	background: #ff0000;
}

.pkhb-footer__social--instagram {
	background: linear-gradient(45deg, #f09433, #dc2743, #bc1888);
}

.pkhb-footer__social--telegram {
	background: #229ed9;
}

.pkhb-footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
	padding-top: 24px;
	border-top: 1px solid var(--pkhb-ft-border);
}

.pkhb-footer__copyright {
	margin: 0;
	font-size: 14px;
	color: var(--pkhb-ft-text);
}

.pkhb-footer__payments {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}

.pkhb-footer__payments img,
.pkhb-footer__pay {
	height: 26px;
	width: auto;
	max-width: none;
	object-fit: contain;
}

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

@media (max-width: 600px) {
	.pkhb-footer {
		padding: 36px 18px 20px;
	}
	.pkhb-footer__grid {
		grid-template-columns: 1fr;
		gap: 28px;
	}
	.pkhb-footer__bottom {
		justify-content: flex-start;
	}
}
