/**
 * Footer – gemeinsame Styles fuer Startseite UND Astra-Seiten.
 *
 * Wird auf allen Seiten geladen (siehe pizzaschmiede_enqueue_footer_assets()),
 * weil home.css und brand.css sich gegenseitig ausschliessen. Farben stehen
 * deshalb bewusst als Hex-Werte drin und nicht als CSS-Variablen: die
 * --ps-*-Variablen sind nur in home.css definiert, nicht in brand.css.
 */

.ps-footer {
	background: #1e1a17;
	color: #c8bfb4;
	position: relative;
	z-index: 1;
}

.ps-footer__inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 72px 80px 48px;
}

.ps-footer__cols {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 56px;
	padding-bottom: 56px;
	border-bottom: 1px solid #2e2a26;
}

.ps-footer__logo {
	margin-bottom: 16px;
	margin-top: -8px;
	display: block;
}

.ps-footer__logo img {
	height: 140px;
	width: auto;
	display: block;
	opacity: 0.92;
}

.ps-footer__brand-text {
	font-size: 16px;
	color: #9a9088;
	line-height: 1.75;
	margin: 0 0 24px;
	max-width: 280px;
	font-weight: 300;
}

.ps-footer__tag {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: #2a2520;
	border: 1px solid #4a4440;
	padding: 12px 18px;
	border-radius: 3px;
	font-size: 15px;
	color: #c2a87a;
	font-weight: 500;
	letter-spacing: 0.3px;
}

.ps-footer__heading {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #8a807a;
	margin: 0 0 22px;
}

.ps-footer__list {
	display: flex;
	flex-direction: column;
	gap: 16px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.ps-footer__link {
	font-size: 16px;
	color: #c8bfb4;
	text-decoration: none;
	transition: color 0.2s;
}

.ps-footer__link:hover,
.ps-footer__link:focus-visible {
	color: #f8f4ee;
}

.ps-footer__pay {
	padding: 32px 0;
	border-bottom: 1px solid #2e2a26;
}

.ps-pay-row {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}

/* Eigene Klasse statt .ps-pay: .ps-pay ist auf der Produktseite (brand.css)
   der Wrapper der Zahlarten-Liste und bringt margin/gap mit, die sonst auf die
   Badges durchschlagen wuerden. */
.ps-paybadge {
	border-radius: 4px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.ps-paybadge--visa {
	background: #1a1f71;
	width: 52px;
	font-size: 15px;
	font-weight: 900;
	font-style: italic;
	color: #fff;
	letter-spacing: 1.5px;
	font-family: "Arial Black", Arial, sans-serif;
}

.ps-paybadge--mc {
	background: #fff;
	width: 52px;
}

.ps-paybadge--paypal {
	background: #003087;
	width: 64px;
	font-size: 12px;
	font-weight: 800;
	color: #fff;
	font-family: Arial, sans-serif;
}

.ps-paybadge--paypal i {
	font-style: normal;
	color: #009cde;
}

.ps-paybadge--klarna {
	background: #ffb3c7;
	width: 64px;
	font-size: 12px;
	font-weight: 700;
	color: #0d0d0d;
	letter-spacing: 0.3px;
	font-family: Arial, sans-serif;
}

.ps-paybadge--sepa {
	background: #2a2520;
	border: 1px solid #4a4440;
	padding: 0 12px;
	gap: 6px;
	font-size: 10px;
	font-weight: 600;
	color: #c8bfb4;
	letter-spacing: 0.8px;
	font-family: Arial, sans-serif;
}

.ps-footer__bottom {
	padding-top: 28px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
}

.ps-footer__copy {
	font-size: 14px;
	color: #7a706a;
	margin: 0;
}

.ps-footer__copy em {
	color: #9a9088;
}

.ps-footer__leaves {
	display: flex;
	align-items: center;
	gap: 6px;
	opacity: 0.4;
}

/* ─────────────── Responsive ─────────────── */
@media (max-width: 1200px) {
	.ps-footer__inner {
		padding-left: 48px;
		padding-right: 48px;
	}
}

@media (max-width: 1024px) {
	.ps-footer__cols {
		grid-template-columns: 1fr 1fr;
		gap: 40px;
	}
}

@media (max-width: 900px) {
	.ps-footer__inner {
		padding-left: 24px;
		padding-right: 24px;
		padding-top: 56px;
	}
}

@media (max-width: 720px) {
	.ps-footer__cols {
		grid-template-columns: 1fr;
	}

	.ps-footer__bottom {
		flex-direction: column;
		align-items: flex-start;
	}
}
