/*
 * Footer enhancements — brand + USP trust band.
 * Renders inside Betheme's .footer_action slot (Theme Options → footer
 * call-to-action), styled as a distinct dark band above the footer columns.
 */
#Footer .footer_action {
	background: #121212;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
#Footer .footer_action .container {
	padding-top: 24px;
	padding-bottom: 24px;
}

.ng-footer-top {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 22px;
	text-align: center;
	font-family: "Poppins", sans-serif;
}

.ng-footer-brand {
	display: flex;
	flex-direction: column;
	gap: 5px;
	min-width: 0;
}
.ng-footer-brand__logo {
	display: inline-flex;
	align-items: center;
}
.ng-footer-brand__logo img {
	height: 40px;
	width: auto;
	max-width: 200px;
	display: block;
	/* The brand logo is dark (made for the white header); render it white on
	   the dark footer band. Swap for a light logo file if one exists. */
	filter: brightness(0) invert(1);
}
.ng-footer-brand__name {
	font-size: 22px;
	font-weight: 800;
	letter-spacing: .02em;
	line-height: 1;
	color: #ffffff;
}
.ng-footer-brand__tag {
	font-size: 13px;
	line-height: 1.4;
	color: #aab1bd;
	max-width: 360px;
}

.ng-footer-usps {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 16px 24px;
	list-style: none;
	max-width: 1000px;
	margin: 30px auto 0;
	padding: 24px 0 0;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.ng-footer-usps li {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	font-size: 13px;
	font-weight: 600;
	color: #e7e7e7;
	white-space: nowrap;
}
.ng-footer-usp__icon {
	display: inline-flex;
	flex: 0 0 auto;
	color: var(--ng-accent, #ff5a00);
}
.ng-footer-usp__icon svg {
	width: 20px;
	height: 20px;
	display: block;
}

@media (max-width: 768px) {
	.ng-footer-top {
		flex-direction: column;
		align-items: center;
		gap: 34px;
	}
	/* Center the logo, keep the USP block full-width below it. */
	.ng-footer-brand {
		align-self: center;
	}
	/* 2-column grid so the items align (col 2 starts at the same x, and each
	   row's items start at the same vertical position). */
	.ng-footer-usps {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 14px 18px;
		width: 100%;
		align-items: start;
	}
	.ng-footer-usps li {
		font-size: 12.5px;
		white-space: normal;
		align-items: flex-start;
		text-align: left;
	}
	.ng-footer-usp__icon {
		margin-top: 1px;
	}
}

/* Mobile: lay the footer link columns out 2-up instead of one long stack */
@media (max-width: 959px) {
	#Footer .widgets_wrapper .container {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 14px 18px;
		align-items: start;
	}
	#Footer .widgets_wrapper .column {
		width: auto !important;
		min-width: 0 !important;
		margin: 0 !important;
		padding: 0 !important;
		float: none !important;
		text-align: left;
	}
	#Footer .widgets_wrapper .column .widget {
		display: block;
	}
	#Footer .widgets_wrapper .mcb-column-inner {
		padding: 0 !important;
	}
}

/* Newsletter (MailPoet) inside the footer trust band */
.ng-footer-newsletter {
	margin: 0;
	max-width: 480px;
	width: 100%;
	text-align: center;
}
.ng-footer-newsletter .mailpoet_form {
	background: transparent !important;
	padding: 0 !important;
	max-width: 480px;
	margin: 0 auto;
}
.ng-footer-newsletter h1,
.ng-footer-newsletter h2,
.ng-footer-newsletter h3,
.ng-footer-newsletter .mailpoet_heading {
	color: #ffffff !important;
	font-family: "Poppins", sans-serif;
	font-weight: 700;
	font-size: 19px;
	margin: 0 0 6px !important;
}
.ng-footer-newsletter .mailpoet_paragraph {
	color: #aab1bd;
	font-size: 13px;
	margin: 0 0 12px;
}
.ng-footer-newsletter .mailpoet_text,
.ng-footer-newsletter input.mailpoet_text {
	width: 100%;
	box-sizing: border-box;
	padding: 11px 14px;
	border-radius: 8px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	background: #1c1c1c;
	color: #ffffff;
}
.ng-footer-newsletter input.mailpoet_text::placeholder { color: #8a92a0; }
/* Submit: override MailPoet's inline black / full-width button */
.ng-footer-newsletter input.mailpoet_submit {
	background-color: var(--ng-accent, #ff5a00) !important;
	color: #ffffff !important;
	border: 0 !important;
	border-radius: 8px !important;
	padding: 12px 26px !important;
	display: block !important;
	width: fit-content !important;
	margin: 8px auto 0 !important;
	float: none !important;
	font-family: "Poppins", sans-serif !important;
	font-size: 14px !important;
	font-weight: 700 !important;
	letter-spacing: .02em !important;
	cursor: pointer;
	transition: background-color .2s ease;
}
.ng-footer-newsletter input.mailpoet_submit:hover { background-color: var(--ng-accent-dark, #e54f00) !important; }
/* Compact email input — white field with readable dark text */
.ng-footer-newsletter input.mailpoet_text {
	padding: 11px 14px !important;
	border-radius: 8px !important;
	font-size: 14px !important;
	background-color: #ffffff !important;
	color: #1a1f24 !important;
}
.ng-footer-newsletter input.mailpoet_text::placeholder { color: #8a92a0 !important; }
.ng-footer-newsletter .mailpoet_message > p { color: #e7e7e7; }

/* Desktop: group the link columns centrally instead of spreading full-width */
@media (min-width: 960px) {
	#Footer .widgets_wrapper .container {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		gap: 28px 48px;
		max-width: 1100px;
		margin-left: auto;
		margin-right: auto;
	}
}
#Footer .widgets_wrapper .column {
	width: auto !important;
	float: none !important;
	margin: 0 !important;
	text-align: left;
}
/* Compact the Contact & Support / Company paragraphs (tighter email/phone) */
#Footer .widgets_wrapper p {
	margin-top: 0;
	margin-bottom: 5px;
}
#Footer .widgets_wrapper .column .widget {
	display: inline-block;
	text-align: left;
}
#Footer .widgets_wrapper .wp-block-list,
#Footer .widgets_wrapper .widget ul {
	list-style: none;
	margin-left: 0;
	padding-left: 0;
}
/* "Legal" section sits below "Company details" in the same column — give the
   second heading breathing room so the two groups read as distinct. */
#Footer .widgets_wrapper .ng-footer-legal-title { margin-top: 24px; }

/* Bottom (copyright) bar — centered: copyright text, payment row, social */
#Footer .footer_copy .mcb-column-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 12px;
}
#Footer .footer_copy .copyright {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 6px 16px;
	float: none;
	margin: 0;
}
#Footer .footer_copy .social {
	float: none;
	margin: 0;
	justify-content: center;
}
.ng-footer-pay {
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 7px;
}
.ng-pay {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 26px;
	min-width: 42px;
	padding: 0 9px;
	background: #ffffff;
	border-radius: 5px;
	font: 700 11px/1 "Poppins", sans-serif;
	letter-spacing: .03em;
	color: #1a1f24;
	box-shadow: 0 1px 2px rgba(0, 0, 0, .25);
}
.ng-pay--img { padding: 0; min-width: 0; }
.ng-pay--img svg { display: block; height: 26px; width: auto; border-radius: 5px; }
.ng-pay[data-brand="visa"] { color: #1a1f71; font-style: italic; }
.ng-pay[data-brand="amex"] { background: #006fcf; color: #ffffff; }
.ng-pay[data-brand="dpd"]  { color: #dc0032; }
