/**
 * Pizzaschmiede – Startseite
 * Portiert aus dem claude.ai/design-Entwurf "Pizzaschmiede.dc.html".
 *
 * Der Entwurf lieferte reine Inline-Styles plus `style-hover`-Attribute
 * (ein Feature der Design-Canvas). Beides ist hier zu regulaerem CSS
 * aufgeloest. Klassenpraefix `ps-`, damit nichts mit Elementor oder dem
 * Parent-Theme kollidiert.
 */

/* ─────────────── Tokens ─────────────── */
.pizzaschmiede-home {
	--ps-cream: #f8f4ee;
	--ps-cream-alt: #f4f2ec;
	--ps-sand: #f0ebe3;
	--ps-ink: #282420;
	--ps-ink-deep: #1e1a17;
	--ps-red: #8b1a1a;
	--ps-red-dark: #6d1414;
	--ps-gold: #c4a35a;
	--ps-tan: #c2a87a;
	--ps-clay: #c2956a;
	--ps-green: #4a7c59;

	--ps-text-muted: #5a524a;
	--ps-text-muted-2: #7a6e64;
	--ps-text-muted-3: #9a9088;
	--ps-text-muted-4: #a89e94;

	--ps-line: #d4c9b8;
	--ps-line-soft: #e6ddd0;
	--ps-line-hair: #f0ebe3;

	--ps-serif: "Playfair Display", Georgia, serif;
	--ps-sans: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

	/* Logo-Geometrie – von home.js beim Scrollen interpoliert. */
	--ps-logo-max: 330px;
	--ps-logo-min: 99px;

	font-family: var(--ps-sans);
	color: var(--ps-ink);
	background: var(--ps-cream);
}

.pizzaschmiede-home *,
.pizzaschmiede-home *::before,
.pizzaschmiede-home *::after {
	box-sizing: border-box;
}

body.ps-home-body {
	margin: 0;
	background: #f8f4ee;
}

/* ─────────────── Versandkosten-Hinweisbar ─────────────── */
.ps-topbar {
	background: var(--ps-ink);
	text-align: center;
	padding: 10px 48px;
	border-bottom: 1px solid #3a3630;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	column-gap: 24px;
	row-gap: 6px;
}

/* Trennt die beiden Hinweise, solange sie in einer Zeile stehen. Nach dem
   Umbruch waere der Strich sinnlos, darum haengt er am zweiten Element. */
.ps-topbar__disclaimer::before {
	content: "";
	display: inline-block;
	width: 1px;
	height: 12px;
	margin-right: 20px;
	background: currentColor;
	opacity: 0.25;
	vertical-align: -1px;
}

@media (max-width: 900px) {
	.ps-topbar__disclaimer::before {
		display: none;
	}
}

.ps-topbar__text {
	font-size: 13px;
	color: #c8bfb4;
	margin: 0;
	letter-spacing: 0.2px;
}

.ps-topbar__text strong {
	font-weight: 600;
	color: #f0ece6;
}

.ps-topbar__sep {
	margin: 0 12px;
	opacity: 0.3;
}

.ps-topbar__link {
	color: var(--ps-tan);
	text-decoration: none;
	font-weight: 500;
	border-bottom: 1px solid rgba(194, 168, 122, 0.4);
}

.ps-topbar__link:hover,
.ps-topbar__link:focus-visible {
	color: #d8bd8c;
}

/* ─────────────── Header ─────────────── */
.ps-header {
	position: sticky;
	top: 0;
	z-index: 9999;
	background: linear-gradient(
		to bottom,
		rgba(248, 244, 238, 0.97) 0,
		rgba(248, 244, 238, 0.97) 60px,
		rgba(248, 244, 238, 0) 60px
	);
	backdrop-filter: blur(4px);
	border-bottom: none;
	transition: background 0.2s ease, border-color 0.2s ease;
}

/* Gesetzt von home.js, sobald > 60px gescrollt wurde. */
.ps-header.is-scrolled {
	background: rgba(242, 236, 226, 0.98);
	border-bottom: 1px solid rgba(180, 160, 130, 0.3);
}

.ps-header__inner {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 48px;
	display: flex;
	align-items: center;
	height: 60px;
	position: relative;
}

.ps-nav {
	display: flex;
	align-items: center;
	gap: 44px;
	flex: 1;
}

.ps-nav--left {
	justify-content: flex-end;
	padding-right: 180px;
}

.ps-nav--right {
	justify-content: flex-start;
	padding-left: 180px;
}

.ps-nav__link {
	font-size: 13px;
	font-weight: 600;
	color: var(--ps-ink);
	text-decoration: none;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	opacity: 0.6;
	transition: opacity 0.2s;
	white-space: nowrap;
}

.ps-nav__link:hover,
.ps-nav__link:focus-visible {
	opacity: 1;
}

.ps-nav__divider {
	width: 1px;
	height: 14px;
	background: var(--ps-line);
	flex-shrink: 0;
}

/* ── Nav-Dropdown ──
   Loest die drei Top-Punkte auf die sechs Produktkategorien auf.
   Sichtbar bei Hover, bei Tastaturfokus (:focus-within) und wenn home.js
   nach einem Tap [data-ps-open] setzt. Ohne JS bleiben die ersten beiden. */
.ps-nav__group {
	position: relative;
	display: flex;
	align-items: center;
}

.ps-nav__toggle {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: none;
	border: none;
	padding: 0;
	cursor: pointer;
	font: inherit;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 1.2px;
	text-transform: uppercase;
}

.ps-nav__chev {
	transition: transform 0.2s ease;
	opacity: 0.7;
}

/* Sonst faellt der Button auf opacity 0.6 zurueck, sobald der Zeiger im
   aufgeklappten Menue steht – der Top-Punkt saehe dann inaktiv aus. */
.ps-nav__group:hover .ps-nav__toggle,
.ps-nav__group:focus-within .ps-nav__toggle,
.ps-nav__group[data-ps-open] .ps-nav__toggle {
	opacity: 1;
}

.ps-nav__group:hover .ps-nav__chev,
.ps-nav__group:focus-within .ps-nav__chev,
.ps-nav__group[data-ps-open] .ps-nav__chev {
	transform: rotate(180deg);
}

.ps-nav__menu {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translate(-50%, -4px);
	min-width: 232px;
	padding: 8px;
	background: var(--ps-cream);
	border: 1px solid var(--ps-line-soft);
	border-radius: 3px;
	box-shadow: 0 12px 32px rgba(40, 36, 32, 0.14);

	/* Der Header selbst traegt z-index 9999; hier geht es nur um die
	   Stapelung gegenueber Hero und Topbar innerhalb des Headers. */
	z-index: 10;

	opacity: 0;
	visibility: hidden;
	transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
}

.ps-nav__group:hover .ps-nav__menu,
.ps-nav__group:focus-within .ps-nav__menu,
.ps-nav__group[data-ps-open] .ps-nav__menu {
	opacity: 1;
	visibility: visible;
	transform: translate(-50%, 0);
}

/* Unsichtbare Bruecke: sonst schliesst das Menue im Spalt unter dem Button. */
.ps-nav__menu::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: -8px;
	height: 8px;
}

.ps-nav__item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 10px 12px;
	border-radius: 2px;
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0.2px;
	text-transform: none;
	color: var(--ps-ink);
	text-decoration: none;
	white-space: nowrap;
	transition: background 0.15s, color 0.15s;
}

.ps-nav__item:hover,
.ps-nav__item:focus-visible {
	background: var(--ps-sand);
	color: var(--ps-red);
}

.ps-nav__count {
	font-size: 12px;
	color: var(--ps-text-muted-3);
	font-variant-numeric: tabular-nums;
}

.ps-icon-btn {
	background: none;
	border: none;
	cursor: pointer;
	padding: 4px;
	display: flex;
	align-items: center;
	position: relative;
	opacity: 0.6;
	transition: opacity 0.2s;
	color: var(--ps-ink);
	text-decoration: none;
}

.ps-icon-btn:hover,
.ps-icon-btn:focus-visible {
	opacity: 1;
}

.ps-cart-count {
	position: absolute;
	top: -1px;
	right: -1px;
	width: 12px;
	height: 12px;
	background: var(--ps-red);
	border-radius: 50%;
	font-size: 7px;
	font-weight: 700;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* ── Such-Panel ── */
.ps-search {
	position: relative;
	display: flex;
	align-items: center;
}

.ps-search .ps-icon-btn[aria-expanded="true"] {
	opacity: 1;
}

.ps-search__panel {
	position: absolute;
	top: 100%;
	right: 0;
	margin-top: 14px;
	width: 300px;
	padding: 10px;
	background: var(--ps-cream);
	border: 1px solid var(--ps-line-soft);
	border-radius: 3px;
	box-shadow: 0 12px 32px rgba(40, 36, 32, 0.14);
	z-index: 10;
}

.ps-search__form {
	display: flex;
	align-items: center;
	gap: 8px;
}

.ps-search__input {
	flex: 1;
	min-width: 0;
	border: 1px solid var(--ps-line-soft);
	border-radius: 2px;
	background: #fff;
	padding: 9px 12px;
	font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 14px;
	color: var(--ps-ink);
}

.ps-search__input:focus {
	outline: none;
	border-color: var(--ps-red);
}

.ps-search__submit {
	flex: none;
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	width: 36px;
	height: 36px;
	/* Astras Button-Padding wuerde die Contentbox auffressen und das Icon
	   auf 0 quetschen. */
	padding: 0;
	background: var(--ps-red);
	color: #fff;
	border: none;
	border-radius: 2px;
	cursor: pointer;
	transition: background 0.15s;
}

.ps-search__submit svg {
	flex: none;
	display: block;
	stroke: #fff;
}

.ps-search__submit:hover,
.ps-search__submit:focus-visible {
	background: var(--ps-red-dark, #6d1414);
}

@media (max-width: 900px) {
	.ps-search__panel {
		width: 260px;
	}
}

/* Logo haengt mittig aus der 60px-Navzeile heraus. */
.ps-logo {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: -28px;
	z-index: 10;
	text-decoration: none;
	line-height: 0;
}

.ps-logo__img {
	height: var(--ps-logo-max);
	width: var(--ps-logo-max);
	object-fit: contain;
	display: block;
	filter: drop-shadow(0 12px 32px rgba(100, 20, 20, 0.3));
	transition: transform 0.35s;
}

.ps-logo:hover .ps-logo__img,
.ps-logo:focus-visible .ps-logo__img {
	transform: scale(1.04);
}

/* ─────────────── Hero ─────────────── */
.ps-hero {
	position: relative;
	min-height: 680px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	/* Zieht den Hero unter den ueberhaengenden Logo-Kreis. */
	margin-top: -288px;
	padding-top: 288px;
	z-index: 1;
}

.ps-hero__copy {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 80px 64px 80px 80px;
	position: relative;
	z-index: 2;
}

.ps-hero__title {
	font-family: var(--ps-serif);
	font-size: clamp(42px, 4.5vw, 68px);
	line-height: 1.08;
	font-weight: 900;
	color: var(--ps-ink);
	margin: 0 0 12px;
}

.ps-hero__title em {
	font-style: italic;
	color: var(--ps-red);
}

.ps-hero__sub {
	font-size: 18px;
	line-height: 1.65;
	color: var(--ps-text-muted);
	max-width: 420px;
	margin: 0 0 40px;
	font-weight: 300;
}

.ps-hero__actions {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
}

.ps-hero__media {
	position: relative;
	overflow: hidden;
	min-height: 680px;
}

.ps-hero__img,
.ps-hero__video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.ps-hero__video {
	opacity: 0;
	transition: opacity 0.7s ease;
}

.ps-hero__video.is-visible {
	opacity: 1;
}

/* Weicher Uebergang zur Textspalte. */
.ps-hero__vignette {
	position: absolute;
	inset: 0;
	background: linear-gradient(to right, rgba(248, 244, 238, 0.45) 0%, transparent 30%);
	pointer-events: none;
}

/* ─────────────── Buttons ─────────────── */
.ps-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	text-decoration: none;
	border-radius: 2px;
	font-weight: 500;
	letter-spacing: 0.3px;
	transition: background 0.2s, color 0.2s, border-color 0.2s;
	cursor: pointer;
}

.ps-btn--primary {
	background: var(--ps-red);
	color: #fff;
	padding: 14px 28px;
	font-size: 15px;
	border: none;
}

.ps-btn--primary:hover,
.ps-btn--primary:focus-visible {
	background: var(--ps-red-dark);
	color: #fff;
}

.ps-btn--lg {
	padding: 15px 34px;
}

.ps-btn--outline {
	border: 1.5px solid var(--ps-red);
	color: var(--ps-red);
	background: transparent;
	padding: 14px 36px;
	font-size: 14px;
	gap: 10px;
}

.ps-btn--outline:hover,
.ps-btn--outline:focus-visible {
	background: var(--ps-red);
	color: #fff;
}

.ps-btn--ghost-light {
	border: 1px solid #c8bfb4;
	color: var(--ps-cream);
	background: transparent;
	padding: 12px 24px;
	font-size: 14px;
	font-weight: 400;
}

.ps-btn--ghost-light:hover,
.ps-btn--ghost-light:focus-visible {
	background: var(--ps-cream);
	color: var(--ps-ink);
}

.ps-link-underline {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--ps-ink);
	text-decoration: none;
	font-size: 15px;
	font-weight: 400;
	border-bottom: 1px solid #c8bfb4;
	padding-bottom: 2px;
	transition: color 0.2s;
}

.ps-link-underline:hover,
.ps-link-underline:focus-visible {
	color: var(--ps-red);
}

/* ─────────────── Basilikum-Trenner ─────────────── */
.ps-divider {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 8px 0;
	gap: 20px;
}

.ps-divider--cream {
	background: var(--ps-cream);
}

.ps-divider--wide {
	gap: 16px;
	max-width: 1440px;
	margin: 0 auto;
}

.ps-divider__rule {
	height: 1px;
	flex: 1;
	max-width: 360px;
}

.ps-divider--wide .ps-divider__rule {
	max-width: 480px;
}

.ps-divider__rule--l {
	background: linear-gradient(to right, transparent, var(--ps-line));
}

.ps-divider__rule--r {
	background: linear-gradient(to left, transparent, var(--ps-line));
}

.ps-divider__leaves {
	display: flex;
	gap: 10px;
	opacity: 0.4;
}

/* ─────────────── Gemeinsame Section-Bausteine ─────────────── */
.ps-section-head {
	text-align: center;
	margin-bottom: 64px;
}

.ps-section-title {
	font-family: var(--ps-serif);
	font-size: 42px;
	font-weight: 700;
	color: var(--ps-ink);
	margin: 0 0 16px;
	letter-spacing: -0.5px;
}

.ps-section-title em {
	font-style: italic;
	color: var(--ps-red);
}

.ps-section-lead {
	font-size: 16px;
	color: var(--ps-text-muted);
	max-width: 520px;
	margin: 0 auto;
	line-height: 1.7;
	font-weight: 300;
}

.ps-eyebrow {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 2.5px;
	text-transform: uppercase;
}

.ps-eyebrow--green {
	color: var(--ps-green);
	font-size: 13px;
}

/* Die Story-Variante bleibt auf der Basisgroesse. */
.ps-eyebrow--sm {
	font-size: 11px;
}

.ps-eyebrow--red {
	color: var(--ps-red);
}

/* Sternebewertung */
.ps-rating {
	display: flex;
	align-items: center;
	gap: 5px;
	margin: 0 0 14px;
}

.ps-rating__stars {
	display: flex;
	gap: 1px;
}

.ps-rating__value {
	font-size: 13px;
	font-weight: 600;
	color: var(--ps-ink);
}

.ps-rating__count {
	font-size: 12px;
	color: var(--ps-text-muted-3);
	font-weight: 300;
}

.ps-rating--sm .ps-rating__value {
	font-size: 12px;
}

.ps-rating--sm .ps-rating__count {
	font-size: 11px;
}

/* Preisblock */
.ps-price {
	font-size: 24px;
	font-weight: 700;
	color: var(--ps-ink);
	letter-spacing: -0.5px;
}

.ps-price-note {
	font-size: 11px;
	color: var(--ps-text-muted-3);
	margin: 4px 0 0;
	font-weight: 300;
	line-height: 1.4;
}

.ps-price-note a,
.ps-price-note span {
	color: inherit;
	text-decoration: underline;
}

/* ─────────────── Sets ─────────────── */
.ps-sets {
	padding: 96px 80px;
	background: var(--ps-cream);
	max-width: 1440px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.ps-sets__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
	max-width: 1280px;
	margin: 0 auto;
	align-items: stretch;
}

.ps-set-card {
	background: #fff;
	border-radius: 4px;
	overflow: hidden;
	box-shadow: 0 2px 16px rgba(40, 36, 32, 0.07);
	display: flex;
	flex-direction: column;
	transition: transform 0.25s, box-shadow 0.25s;
}

.ps-set-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 32px rgba(40, 36, 32, 0.12);
}

.ps-set-card--featured {
	border: 1.5px solid rgba(139, 26, 26, 0.22);
}

.ps-set-card__media {
	height: 200px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.ps-set-card__media--einsteiger {
	background: linear-gradient(135deg, #f4ede0, #ede3d0);
}

.ps-set-card__media--premium {
	background: linear-gradient(135deg, #f2e8dc, #e8dace);
}

.ps-set-card__media--geschenk {
	background: linear-gradient(135deg, #f5eedd, #ece0c8);
}

.ps-badge {
	position: absolute;
	top: 14px;
	right: 14px;
	color: #fff;
	font-size: 10px;
	font-weight: 600;
	padding: 4px 12px;
	border-radius: 20px;
	letter-spacing: 0.8px;
}

.ps-badge--red {
	background: var(--ps-red);
}

.ps-badge--gold {
	background: var(--ps-gold);
}

.ps-badge--star {
	display: flex;
	align-items: center;
	gap: 5px;
	font-size: 10.5px;
	font-weight: 700;
	padding: 6px 14px;
	letter-spacing: 0.4px;
	box-shadow: 0 3px 10px rgba(139, 26, 26, 0.35);
}

.ps-set-card__body {
	padding: 28px;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.ps-set-card__kicker {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--ps-red);
	margin: 0 0 6px;
}

.ps-set-card__title {
	font-family: var(--ps-serif);
	font-size: 26px;
	font-weight: 700;
	color: var(--ps-ink);
	margin: 0 0 10px;
}

.ps-set-card__desc {
	font-size: 13px;
	color: var(--ps-text-muted);
	line-height: 1.6;
	margin: 0 0 20px;
	font-weight: 300;
}

.ps-includes {
	margin-bottom: 20px;
}

.ps-includes__label {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--ps-text-muted-4);
	margin: 0 0 10px;
}

.ps-includes__list {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 6px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.ps-includes__item {
	display: flex;
	align-items: center;
	gap: 7px;
	font-size: 14px;
	color: var(--ps-ink);
	font-weight: 400;
}

.ps-includes__item::before {
	content: "";
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--ps-red);
	flex-shrink: 0;
}

/* Bewertungsbalken */
.ps-meters {
	display: flex;
	flex-direction: column;
	gap: 8px;
	/* Ankert Balken + Fuss unten, damit sie ueber alle Karten hinweg auf
	   gleicher Hoehe liegen – unabhaengig von der Textlaenge darueber. */
	margin-top: auto;
	margin-bottom: 24px;
}

.ps-meter {
	display: flex;
	align-items: center;
	gap: 10px;
}

.ps-meter__label {
	font-size: 13px;
	color: var(--ps-text-muted-2);
	width: 120px;
	flex-shrink: 0;
}

.ps-meter__track {
	flex: 1;
	height: 4px;
	background: #ede8e0;
	border-radius: 2px;
	overflow: hidden;
}

.ps-meter__fill {
	height: 100%;
	border-radius: 2px;
	background: var(--ps-green);
}

.ps-meter__fill--red {
	background: var(--ps-red);
}

.ps-meter__fill--gold {
	background: var(--ps-gold);
}

.ps-set-card__foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 0;
	padding-top: 20px;
	border-top: 1px solid var(--ps-line-hair);
	gap: 12px;
}

.ps-btn--compact {
	background: var(--ps-red);
	color: #fff;
	text-decoration: none;
	padding: 11px 22px;
	border-radius: 2px;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.2px;
	white-space: nowrap;
	transition: background 0.2s;
	display: inline-block;
}

.ps-btn--compact:hover,
.ps-btn--compact:focus-visible {
	background: var(--ps-red-dark);
	color: #fff;
}

.ps-sets__cta {
	text-align: center;
	margin-top: 48px;
}

/* ─────────────── Produktfinder ─────────────── */
.ps-finder {
	padding: 88px 80px;
	background: var(--ps-cream-alt);
	position: relative;
	z-index: 1;
}

.ps-finder__inner {
	max-width: 840px;
	margin: 0 auto;
	text-align: center;
}

.ps-finder__title {
	font-family: var(--ps-serif);
	font-size: 38px;
	font-weight: 700;
	color: var(--ps-ink);
	margin: 16px 0 14px;
	letter-spacing: -0.5px;
	line-height: 1.2;
}

.ps-finder__lead {
	font-size: 16px;
	color: var(--ps-text-muted);
	line-height: 1.7;
	margin: 0 auto 52px;
	max-width: 460px;
	font-weight: 300;
}

.ps-steps {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	margin: 0 auto;
	max-width: 680px;
}

.ps-step {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14px;
	flex: 1;
}

.ps-step__icon {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: #fff;
	border: 1px solid var(--ps-line-soft);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 10px rgba(40, 36, 32, 0.06);
}

.ps-step__num {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--ps-text-muted-4);
	margin: 0;
}

.ps-step__label {
	font-size: 15px;
	font-weight: 600;
	color: var(--ps-ink);
	margin: 0;
}

.ps-steps__connector {
	width: 56px;
	height: 1px;
	background: var(--ps-line);
	margin-top: 28px;
	flex-shrink: 0;
}

.ps-finder__outcome {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	margin: 14px 0 36px;
}

.ps-finder__outcome-text {
	font-size: 16px;
	color: #8a7a68;
	font-style: italic;
	font-family: var(--ps-serif);
}

/* ─────────────── Kategorien ─────────────── */
.ps-cats {
	padding: 96px 80px;
	background: var(--ps-cream);
	position: relative;
	z-index: 1;
}

.ps-cats__inner {
	max-width: 1280px;
	margin: 0 auto;
}

.ps-cats__head {
	text-align: center;
	margin-bottom: 56px;
}

.ps-cats__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.ps-cat {
	display: block;
	text-decoration: none;
	background: #fff;
	border-radius: 4px;
	overflow: hidden;
	box-shadow: 0 1px 8px rgba(40, 36, 32, 0.06);
	transition: transform 0.25s, box-shadow 0.25s;
}

.ps-cat:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 28px rgba(40, 36, 32, 0.13);
}

.ps-cat--dark {
	background: var(--ps-ink);
}

.ps-cat--dark:hover {
	box-shadow: 0 8px 28px rgba(40, 36, 32, 0.2);
}

.ps-cat__media {
	height: 180px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
}

.ps-cat__media--oefen {
	background: linear-gradient(145deg, #f5e8d8, #edd5bc);
}

.ps-cat__media--backflaechen {
	background: linear-gradient(145deg, #ede8df, #e0d8cc);
}

.ps-cat__media--gaerung {
	background: linear-gradient(145deg, #e8ede4, #d8e4d0);
}

.ps-cat__media--maschinen {
	background: linear-gradient(145deg, #ede8e0, #e4ddd3);
}

.ps-cat__media--werkzeuge {
	background: linear-gradient(145deg, #f0e6d6, #e8d8c0);
}

.ps-cat__media--zutaten {
	background: linear-gradient(145deg, #3a3028, #282420);
}

/* Dekorative Farbkreise hinter den Icons. */
.ps-cat__blob {
	position: absolute;
	border-radius: 50%;
}

.ps-cat__blob--tr {
	top: -20px;
	right: -20px;
	width: 100px;
	height: 100px;
	background: var(--ps-red);
	opacity: 0.06;
}

.ps-cat__blob--bl {
	bottom: -16px;
	left: -16px;
	width: 80px;
	height: 80px;
	background: #8a7060;
	opacity: 0.07;
}

.ps-cat__blob--tc {
	top: -10px;
	left: 50%;
	width: 120px;
	height: 120px;
	background: var(--ps-green);
	opacity: 0.06;
}

.ps-cat__blob--br {
	right: -10px;
	bottom: -10px;
	width: 90px;
	height: 90px;
	background: #6a5a4a;
	opacity: 0.06;
}

.ps-cat__blob--tl {
	top: -12px;
	left: -12px;
	width: 80px;
	height: 80px;
	background: var(--ps-clay);
	opacity: 0.1;
}

.ps-cat__blob--tr-lg {
	top: -20px;
	right: -20px;
	width: 110px;
	height: 110px;
	background: var(--ps-red);
	opacity: 0.15;
}

.ps-cat__body {
	padding: 22px 24px 24px;
}

.ps-cat__title {
	font-family: var(--ps-serif);
	font-size: 20px;
	font-weight: 700;
	color: var(--ps-ink);
	margin: 0 0 8px;
}

.ps-cat__desc {
	font-size: 13px;
	color: var(--ps-text-muted);
	margin: 0 0 16px;
	line-height: 1.6;
	font-weight: 300;
}

.ps-cat__more {
	font-size: 12px;
	color: var(--ps-red);
	font-weight: 600;
	letter-spacing: 0.3px;
}

.ps-cat--dark .ps-cat__title {
	color: var(--ps-cream);
}

.ps-cat--dark .ps-cat__desc {
	color: var(--ps-text-muted-4);
}

.ps-cat--dark .ps-cat__more {
	color: var(--ps-clay);
}

/* ─────────────── Empfehlungen (Mosaik) ─────────────── */
.ps-recos {
	padding: 96px 80px;
	background: var(--ps-sand);
	position: relative;
	z-index: 1;
}

.ps-recos__inner {
	max-width: 1280px;
	margin: 0 auto;
}

.ps-recos__head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	margin-bottom: 48px;
	gap: 24px;
}

.ps-recos__title {
	font-family: var(--ps-serif);
	font-size: 38px;
	font-weight: 700;
	color: var(--ps-ink);
	margin: 0 0 10px;
	letter-spacing: -0.5px;
}

.ps-recos__sub {
	font-size: 15px;
	color: var(--ps-text-muted);
	margin: 0;
	font-weight: 300;
	line-height: 1.6;
}

.ps-recos__all {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--ps-red);
	text-decoration: none;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.3px;
	flex-shrink: 0;
	transition: opacity 0.2s;
}

.ps-recos__all:hover,
.ps-recos__all:focus-visible {
	opacity: 0.7;
}

.ps-mosaic {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-template-rows: 320px 240px;
	gap: 20px;
}

.ps-mosaic__card {
	text-decoration: none;
	background: #fff;
	border-radius: 4px;
	overflow: hidden;
	box-shadow: 0 1px 8px rgba(40, 36, 32, 0.06);
	transition: transform 0.25s, box-shadow 0.25s;
}

.ps-mosaic__card:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 24px rgba(40, 36, 32, 0.12);
}

/* Feature-Karte: Spalte 1–2, Zeile 1 */
.ps-mosaic__card--feature {
	grid-column: 1 / 3;
	grid-row: 1;
	display: grid;
	grid-template-columns: 1fr 1fr;
	box-shadow: 0 2px 12px rgba(40, 36, 32, 0.08);
}

.ps-mosaic__card--feature:hover {
	box-shadow: 0 10px 32px rgba(40, 36, 32, 0.14);
}

.ps-mosaic__card--tall {
	grid-column: 3;
	grid-row: 1;
	display: flex;
	flex-direction: column;
}

/* Kleine Karte: Bild links, Text rechts.
   Vertikal gestapelt blieben in der 240px-Zeile nur ~68px fuer das Bild uebrig
   (der Text braucht ~172px) – object-fit:cover schnitt das Produkt dann auf
   einen unkenntlichen Streifen zusammen. Nebeneinander bekommt das Bild die
   volle Kartenhoehe; die Grid-Geometrie bleibt unveraendert. */
.ps-mosaic__card--small {
	grid-column: 1;
	grid-row: 2;
	display: grid;
	grid-template-columns: 120px 1fr;
}

/* Breite Karte: Spalte 2–3, Zeile 2 */
.ps-mosaic__card--wide {
	grid-column: 2 / 4;
	grid-row: 2;
	display: grid;
	grid-template-columns: 220px 1fr;
}

.ps-mosaic__media {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.ps-mosaic__media--feature {
	background: linear-gradient(145deg, #f5e8d8, #edd5bc, #e4c4a0);
	flex-direction: column;
	gap: 12px;
}

.ps-mosaic__media--steel {
	flex: 1;
	background: linear-gradient(145deg, #e8e4de, #d8d2c8);
}

.ps-mosaic__media--tomato {
	flex: 1;
	background: linear-gradient(145deg, #f2e2dc, #e8cfc6);
}

.ps-mosaic__media--flour {
	background: linear-gradient(145deg, #f5f0e8, #ede5d5);
}

.ps-mosaic__badge {
	position: absolute;
	top: 16px;
	left: 16px;
	background: var(--ps-red);
	color: #fff;
	font-size: 9px;
	font-weight: 700;
	padding: 4px 12px;
	border-radius: 20px;
	letter-spacing: 0.8px;
}

.ps-mosaic__caption {
	font-size: 11px;
	color: #8a7060;
	letter-spacing: 0.3px;
	margin: 0;
}

.ps-mosaic__body {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.ps-mosaic__body--feature {
	padding: 32px;
}

.ps-mosaic__body--wide {
	padding: 28px 32px;
}

.ps-mosaic__body--tall {
	padding: 20px 22px;
}

.ps-mosaic__body--small {
	padding: 18px 20px;
}

.ps-mosaic__kicker {
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--ps-red);
	margin: 0 0 8px;
}

.ps-mosaic__title {
	font-family: var(--ps-serif);
	font-weight: 700;
	color: var(--ps-ink);
	margin: 0 0 10px;
	line-height: 1.2;
}

.ps-mosaic__title--xl {
	font-size: 26px;
}

.ps-mosaic__title--lg {
	font-size: 22px;
}

.ps-mosaic__title--md {
	font-size: 18px;
	margin-bottom: 8px;
}

.ps-mosaic__desc {
	font-size: 13px;
	color: var(--ps-text-muted);
	line-height: 1.65;
	font-weight: 300;
	margin: 0 0 24px;
}

.ps-mosaic__desc--wide {
	line-height: 1.6;
	margin-bottom: 20px;
}

.ps-mosaic__foot {
	display: flex;
	align-items: flex-end;
	gap: 20px;
}

.ps-mosaic__foot--split {
	justify-content: space-between;
	gap: 12px;
}

.ps-price--xl {
	font-size: 28px;
}

.ps-price--lg {
	font-size: 22px;
}

.ps-price--md {
	font-size: 20px;
}

.ps-pill {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: var(--ps-red);
	color: #fff;
	font-size: 13px;
	font-weight: 500;
	padding: 10px 20px;
	border-radius: 2px;
	white-space: nowrap;
}

.ps-more {
	font-size: 12px;
	color: var(--ps-red);
	font-weight: 600;
	letter-spacing: 0.3px;
	white-space: nowrap;
}

/* ─────────────── Marken-Story ─────────────── */
.ps-story {
	padding: 0;
	background: var(--ps-ink);
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.ps-story__leaf {
	position: absolute;
	right: -40px;
	top: 50%;
	transform: translateY(-50%);
	opacity: 0.06;
	pointer-events: none;
}

.ps-story__inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 96px 80px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
	position: relative;
	z-index: 1;
}

.ps-story__figure {
	width: 100%;
	height: 420px;
	object-fit: cover;
	border-radius: 4px;
}

.ps-story__title {
	font-family: var(--ps-serif);
	font-size: 40px;
	font-weight: 700;
	color: var(--ps-cream);
	margin: 0 0 24px;
	line-height: 1.15;
	letter-spacing: -0.5px;
}

.ps-story__title em {
	font-style: italic;
	color: var(--ps-tan);
}

.ps-story__text {
	font-size: 16px;
	color: #c8bfb4;
	line-height: 1.8;
	margin: 0 0 20px;
	font-weight: 300;
}

.ps-story__text:last-of-type {
	margin-bottom: 32px;
}

/* ─────────────── Kundenstimmen ─────────────── */
.ps-voices {
	padding: 112px 80px;
	background: var(--ps-cream);
	position: relative;
	z-index: 1;
}

.ps-voices__inner {
	max-width: 1200px;
	margin: 0 auto;
}

.ps-voices__head {
	text-align: center;
	margin-bottom: 72px;
}

.ps-voices__title {
	font-family: var(--ps-serif);
	font-size: 38px;
	font-weight: 700;
	color: var(--ps-ink);
	margin: 0;
	letter-spacing: -0.5px;
}

.ps-voices__title em {
	font-style: italic;
	color: var(--ps-red);
}

.ps-voices__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
}

.ps-voice {
	padding: 0 40px;
	border-right: 1px solid var(--ps-line-soft);
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.ps-voice:last-child {
	border-right: none;
}

.ps-voice__mark {
	font-family: var(--ps-serif);
	font-size: 56px;
	line-height: 1;
	color: var(--ps-tan);
	opacity: 0.4;
	margin-bottom: 4px;
}

.ps-voice__quote {
	font-size: 16px;
	color: #3a352f;
	line-height: 1.75;
	margin: 0 0 24px;
	font-weight: 300;
	font-style: italic;
}

.ps-voice__stars {
	display: flex;
	gap: 2px;
	margin-bottom: 14px;
}

.ps-voice__name {
	font-size: 14px;
	font-weight: 600;
	color: var(--ps-ink);
	margin: 0 0 4px;
}

.ps-voice__product {
	font-size: 12.5px;
	color: var(--ps-text-muted-3);
	margin: 0;
	font-weight: 300;
}

.ps-voices__foot {
	text-align: center;
	margin-top: 64px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.ps-voices__foot span {
	font-size: 13.5px;
	color: var(--ps-text-muted-2);
	font-weight: 400;
}

/* ─────────────── Trust / Service ─────────────── */
.ps-trust {
	padding: 64px 80px;
	background: var(--ps-sand);
	border-top: 1px solid #e0d8cc;
	border-bottom: 1px solid #e0d8cc;
	position: relative;
	z-index: 1;
}

.ps-trust__grid {
	max-width: 1280px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 32px;
}

.ps-trust__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 14px;
}

.ps-trust__icon {
	width: 52px;
	height: 52px;
	background: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 8px rgba(40, 36, 32, 0.08);
}

.ps-trust__title {
	font-size: 14px;
	font-weight: 600;
	color: var(--ps-ink);
	margin: 0 0 5px;
}

.ps-trust__text {
	font-size: 13px;
	color: var(--ps-text-muted-2);
	margin: 0;
	line-height: 1.55;
	font-weight: 300;
}

/* ─────────────── Newsletter ───────────────
   Dunkle Bruecke von der sandfarbenen Trust-Leiste zum fast schwarzen Footer. */
.ps-news {
	background: var(--ps-ink);
	padding: 76px 80px;
	text-align: center;
	position: relative;
	z-index: 1;
}

.ps-news__inner {
	max-width: 640px;
	margin: 0 auto;
}

/* Das Basilikumgruen der Eyebrow ist auf dunklem Grund zu dunkel. */
.ps-news .ps-eyebrow--green {
	color: #7ba888;
}

.ps-news__title {
	font-family: var(--ps-serif);
	font-size: 38px;
	font-weight: 400;
	color: #f4f0ea;
	margin: 14px 0 16px;
	line-height: 1.2;
}

.ps-news__lead {
	font-size: 16px;
	line-height: 1.7;
	color: var(--ps-text-muted-3);
	font-weight: 300;
	margin: 0 0 32px;
}

.ps-news__form {
	display: flex;
	gap: 10px;
	justify-content: center;
	align-items: stretch;
}

/* Sichtbar nur fuer Screenreader – das Placeholder-Attribut ist kein Label. */
.ps-news__label {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	white-space: nowrap;
}

.ps-news__input {
	flex: 1;
	max-width: 340px;
	padding: 14px 18px;
	font: inherit;
	font-size: 15px;
	color: #f4f0ea;
	background: #322d28;
	border: 1px solid #4a4440;
	border-radius: 2px;
}

.ps-news__input::placeholder {
	color: #7a6e64;
}

/* Attrappe: sichtbar inaktiv, aber nicht bis zur Unlesbarkeit ausgegraut. */
.ps-news__input:disabled,
.ps-news__btn:disabled {
	cursor: not-allowed;
	opacity: 0.55;
}

.ps-news__demo {
	font-size: 12.5px;
	color: var(--ps-tan);
	margin: 20px 0 0;
	letter-spacing: 0.3px;
}

.ps-news__legal {
	font-size: 12.5px;
	color: #6f655c;
	margin: 8px 0 0;
	font-weight: 300;
}

.ps-news__legal a {
	color: #8a7f74;
	text-decoration: underline;
	text-underline-offset: 2px;
}

/* ─────────────── Fokus-Sichtbarkeit ─────────────── */
.pizzaschmiede-home a:focus-visible,
.pizzaschmiede-home button:focus-visible {
	outline: 2px solid var(--ps-red);
	outline-offset: 3px;
}

/* ─────────────── Responsive ───────────────
 * Der Entwurf war reines Desktop-Layout ohne Breakpoints.
 * Die folgenden Stufen sind eine Ergaenzung, kein Teil der Vorlage.
 */
@media (max-width: 1200px) {
	.ps-sets,
	.ps-cats,
	.ps-recos,
	.ps-voices {
		padding-left: 48px;
		padding-right: 48px;
	}

	.ps-story__inner {
		padding-left: 48px;
		padding-right: 48px;
	}

	.ps-trust {
		padding-left: 48px;
		padding-right: 48px;
	}

	.ps-nav--left {
		padding-right: 150px;
	}

	.ps-nav--right {
		padding-left: 150px;
	}

	.ps-nav {
		gap: 28px;
	}
}

@media (max-width: 1024px) {
	/* Mosaik aufloesen: jede Karte volle Breite, feste Zeilenhoehen weg. */
	.ps-mosaic {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: auto;
	}

	.ps-mosaic__card--feature {
		grid-column: 1 / 3;
		grid-row: auto;
		min-height: 320px;
	}

	.ps-mosaic__card--tall,
	.ps-mosaic__card--small {
		grid-column: auto;
		grid-row: auto;
		min-height: 300px;
	}

	/* Ab hier sind die Zeilenhoehen frei (min-height statt fixem Raster), also
	   hat das Bild auch gestapelt genug Platz – zurueck zum vertikalen Layout. */
	.ps-mosaic__card--small {
		display: flex;
		flex-direction: column;
	}

	.ps-mosaic__card--wide {
		grid-column: 1 / 3;
		grid-row: auto;
		min-height: 240px;
	}

	.ps-sets__grid,
	.ps-cats__grid {
		grid-template-columns: 1fr 1fr;
	}

	.ps-trust__grid {
		grid-template-columns: 1fr 1fr;
		gap: 40px 32px;
	}

	.ps-story__inner {
		grid-template-columns: 1fr;
		gap: 48px;
	}

	.ps-voices__grid {
		grid-template-columns: 1fr;
		gap: 56px;
	}

	.ps-voice {
		border-right: none;
		border-bottom: 1px solid var(--ps-line-soft);
		padding-bottom: 48px;
	}

	.ps-voice:last-child {
		border-bottom: none;
		padding-bottom: 0;
	}
}

@media (max-width: 900px) {
	/* Header: Logo raus aus dem Overlap, Navigation darunter umbrechen.
	   home.js schaltet die Shrink-Animation hier ab. */
	.ps-header {
		position: static;
		background: var(--ps-cream);
		backdrop-filter: none;
	}

	.ps-header__inner {
		flex-direction: column;
		height: auto;
		padding: 16px 24px 20px;
		gap: 12px;
	}

	.ps-logo {
		position: static;
		transform: none;
		order: -1;
	}

	.ps-logo__img,
	.ps-header.is-scrolled .ps-logo__img {
		height: 132px !important;
		width: 132px !important;
	}

	.ps-nav {
		flex: none;
		justify-content: center;
		flex-wrap: wrap;
		gap: 20px 24px;
	}

	.ps-nav--left,
	.ps-nav--right {
		padding: 0;
	}

	/* Hier bricht die Nav ohnehin um und es gibt keinen Hover: das Menue
	   klappt im Fluss auf, statt als Overlay ueber dem Hero zu schweben. */
	.ps-nav__group {
		flex-direction: column;
		align-items: center;
		gap: 10px;
	}

	.ps-nav__menu {
		position: static;
		transform: none;
		display: none;
		min-width: 200px;
		box-shadow: none;
		background: transparent;
		border: none;
		padding: 0;
	}

	.ps-nav__group:hover .ps-nav__menu,
	.ps-nav__group:focus-within .ps-nav__menu,
	.ps-nav__group[data-ps-open] .ps-nav__menu {
		transform: none;
	}

	.ps-nav__group[data-ps-open] .ps-nav__menu {
		display: block;
	}

	.ps-nav__menu::before {
		content: none;
	}

	/* Hero: kein Ueberhang mehr noetig. */
	.ps-hero {
		grid-template-columns: 1fr;
		margin-top: 0;
		padding-top: 0;
		min-height: 0;
	}

	.ps-hero__copy {
		padding: 56px 32px;
		order: 2;
	}

	.ps-hero__media {
		min-height: 380px;
		order: 1;
	}

	.ps-hero__vignette {
		background: linear-gradient(to top, rgba(248, 244, 238, 0.4) 0%, transparent 30%);
	}

	.ps-sets,
	.ps-cats,
	.ps-recos {
		padding: 64px 24px;
	}

	.ps-voices {
		padding: 72px 24px;
	}

	.ps-finder,
	.ps-trust,
	.ps-news {
		padding: 64px 24px;
	}

	.ps-story__inner {
		padding-left: 24px;
		padding-right: 24px;
	}

	/* Sonst schneidet object-fit das 4:3-Foto auf Handybreite hart auf die Haende zu. */
	.ps-story__figure {
		height: 280px;
	}
}

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

	.ps-mosaic__card--feature,
	.ps-mosaic__card--wide {
		grid-column: auto;
		grid-template-columns: 1fr;
	}

	.ps-mosaic__media--feature {
		min-height: 220px;
	}

	.ps-mosaic__media--flour {
		min-height: 180px;
	}

	.ps-trust__grid {
		grid-template-columns: 1fr;
	}

	.ps-news__title {
		font-size: 30px;
	}

	.ps-news__form {
		flex-direction: column;
		align-items: stretch;
	}

	.ps-news__input {
		max-width: none;
	}

	.ps-news__btn {
		justify-content: center;
	}

	.ps-includes__list {
		grid-template-columns: 1fr;
	}

	/* Schritt-Konnektoren ergeben vertikal keinen Sinn. */
	.ps-steps {
		flex-direction: column;
		gap: 32px;
	}

	.ps-steps__connector {
		display: none;
	}

	.ps-section-title,
	.ps-recos__title,
	.ps-voices__title,
	.ps-finder__title {
		font-size: 30px;
	}

	.ps-story__title {
		font-size: 30px;
	}

	.ps-recos__head {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
	}

	.ps-set-card__foot,
	.ps-mosaic__foot {
		flex-wrap: wrap;
	}
}

/* ─────────────── Reduzierte Bewegung ─────────────── */
@media (prefers-reduced-motion: reduce) {
	.pizzaschmiede-home *,
	.pizzaschmiede-home *::before,
	.pizzaschmiede-home *::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}

	.ps-set-card:hover,
	.ps-cat:hover,
	.ps-mosaic__card:hover {
		transform: none;
	}
}

/* ═══════════════════════════════════════════════════════════════════════
   WooCommerce-Anbindung
   Ergaenzt den Entwurf um echte Produktbilder. Die Kategorie-Kacheln
   behalten bewusst ihre abstrakten Illustrationen.
   ═══════════════════════════════════════════════════════════════════════ */

/* ── Empfehlungs-Mosaik: echte Produktfotos ─────────────────────────────
   Die Fotos liegen bereits auf der Marken-Creme mit weichem Schlagschatten.
   Sie fuellen die Medienflaeche komplett aus; der Farbverlauf darunter
   bleibt nur sichtbar, falls ein Produkt kein Bild hat. */
.ps-mosaic__media {
	overflow: hidden;
}

.ps-mosaic__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.4s ease;
}

.ps-mosaic__card:hover .ps-mosaic__img {
	transform: scale(1.04);
}

.ps-mosaic__badge {
	z-index: 2;
}

/* ── Set-Kacheln: freigestellte Produkte, ueberlappend ───────────────────
   Drei transparente PNGs auf der Set-Hintergrundfarbe. Das mittlere Produkt
   steht vorn und groesser, die beiden aeusseren leicht gedreht dahinter. */
.ps-set-card__media {
	overflow: hidden;
}

.ps-set-stack {
	position: relative;
	width: 100%;
	height: 100%;
}

.ps-set-stack__img {
	position: absolute;
	top: 50%;
	left: 50%;
	width: auto;
	/* max-width zaehmt breite, flache Produkte (z. B. den Pizzastein): zusammen
	   mit object-fit:contain schrumpfen sie proportional, statt seitlich aus
	   der Kachel zu laufen. */
	max-width: 42%;
	object-fit: contain;
	filter: drop-shadow(0 6px 12px rgba(40, 36, 32, 0.20));
	transition: transform 0.35s ease;
}

.ps-set-stack__img--1 {
	height: 112px;
	z-index: 1;
	transform: translate(-104%, -50%) rotate(-8deg);
}

.ps-set-stack__img--2 {
	height: 146px;
	max-width: 50%;
	z-index: 3;
	transform: translate(-50%, -50%);
}

.ps-set-stack__img--3 {
	height: 106px;
	z-index: 2;
	transform: translate(4%, -50%) rotate(8deg);
}

/* Beim Hover faechern die Produkte leicht auf. */
.ps-set-card:hover .ps-set-stack__img--1 {
	transform: translate(-112%, -52%) rotate(-11deg);
}

.ps-set-card:hover .ps-set-stack__img--2 {
	transform: translate(-50%, -54%);
}

.ps-set-card:hover .ps-set-stack__img--3 {
	transform: translate(12%, -52%) rotate(11deg);
}

@media (prefers-reduced-motion: reduce) {
	.ps-mosaic__img,
	.ps-set-stack__img {
		transition: none;
	}

	.ps-mosaic__card:hover .ps-mosaic__img {
		transform: none;
	}
}

@media (max-width: 900px) {
	.ps-set-stack__img--1 { height: 96px; }
	.ps-set-stack__img--2 { height: 124px; }
	.ps-set-stack__img--3 { height: 92px; }
}
