/* =====================================================
   FAIRPIXELT – Boho Landingpage-Style für WooCommerce
   Farbsystem: Gold #B2974B / Wein #770000 / Dunkelbraun #321010
   Typo: Cormorant Garamond (Headlines) / Caveat (Akzente) / Lato (Text)
   ===================================================== */

:root {
	--fpt-gold: #B2974B;
	--fpt-gold-light: #CBB578;
	--fpt-wine: #770000;
	--fpt-dark: #321010;
	--fpt-cream: #F6EFDD;
	--fpt-ivory: #FFFDF8;
	--fpt-sand: #EAD9AF;
	--fpt-radius: 4px;
	--fpt-radius-lg: 28px;
	--fpt-shadow: 0 14px 34px rgba(50, 16, 16, 0.12);
	--fpt-pad: clamp(1.25rem, 4vw, 3rem);
}

/* ---------- Grundgerüst: volle Breite, Sections tragen die Farbe ---------- */
.fpt-course {
	width: 100%;
	color: var(--fpt-dark);
	font-family: 'Lato', sans-serif;
	font-size: 1.05rem;
	line-height: 1.75;
}

.fpt-course *,
.fpt-course *::before,
.fpt-course *::after {
	box-sizing: border-box;
}

.fpt-section {
	width: 100%;
	padding-block: 4.5rem;
}

.fpt-section--cream {
	background: var(--fpt-cream);
}

.fpt-section--ivory {
	background: var(--fpt-ivory);
}

.fpt-inner {
	max-width: 1180px;
	margin: 0 auto;
	padding-inline: var(--fpt-pad);
}

.fpt-inner--narrow {
	max-width: 760px;
}

.fpt-center {
	text-align: center;
}

.fpt-course h1,
.fpt-course h2 {
	font-family: 'Cormorant Garamond', serif;
	color: var(--fpt-dark);
	font-weight: 600;
	line-height: 1.15;
}

.fpt-course h2 {
	font-size: clamp(1.9rem, 3vw, 2.5rem);
	margin: 0.4rem 0 1.6rem;
}

.fpt-eyebrow {
	display: block;
	font-family: 'Cormorant Garamond', cursive;
	font-weight: 700;
	font-size: 1.4rem;
	color: var(--fpt-wine);
	margin-bottom: 0.8rem;
	letter-spacing: 0.02em;
}

.fpt-eyebrow--center {
	text-align: center;
}

.fpt-eyebrow--light {
	color: var(--fpt-gold-light);
}

/* ---------- Organischer Trenner zwischen Sections ---------- */
.fpt-divider {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	padding: 0 var(--fpt-pad);
	background: transparent;
	position: relative;
}

.fpt-divider span {
	height: 1px;
	width: clamp(60px, 12vw, 160px);
	background: linear-gradient(90deg, transparent, var(--fpt-gold), transparent);
}

.fpt-divider i {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: var(--fpt-gold);
	display: inline-block;
	flex-shrink: 0;
}

/* ---------- Hero ---------- */
.fpt-hero {
	display: grid;
	grid-template-columns: 0.95fr 1.05fr;
	gap: 3.5rem;
	align-items: center;
}

.fpt-hero__media {
	display: flex;
	justify-content: center;
}

/* Torbogen als Bildrahmen – Motiv für Schwelle / Übergang */
.fpt-arch {
	position: relative;
	width: 100%;
	max-width: 420px;
	border-radius: 220px 220px 12px 12px;
	overflow: hidden;
	box-shadow: var(--fpt-shadow);
	border: 10px solid var(--fpt-ivory);
	outline: 1px solid var(--fpt-sand);
}

.fpt-arch img {
	width: 100%;
	height: 520px;
	object-fit: cover;
	display: block;
}

.fpt-title {
	font-size: clamp(2.2rem, 4vw, 3.1rem);
	margin: 0 0 1.1rem;
}

.fpt-short-desc {
	font-size: 1.12rem;
	color: #5a4030;
	margin-bottom: 1.6rem;
}

.fpt-short-desc p:last-child {
	margin-bottom: 0;
}

.fpt-price-row {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1.7rem;
	flex-wrap: wrap;
}

.fpt-price {
	font-family: 'Cormorant Garamond', serif;
	font-size: 2rem;
	font-weight: 700;
	color: var(--fpt-wine);
}

.fpt-price .woocommerce-Price-amount {
	color: inherit;
}

.fpt-badge {
	background: var(--fpt-wine);
	color: #fff;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.03em;
	padding: 0.4rem 0.9rem;
	border-radius: 999px;
}

/* ---------- Add to Cart (WooCommerce Formular) ---------- */
.fpt-cta {
	margin-bottom: 1.7rem;
}

.fpt-cta .cart {
	display: flex;
	align-items: center;
	gap: 1rem;
	flex-wrap: wrap;
}

.fpt-cta .quantity {
	margin: 0;
}

.fpt-cta .quantity .qty {
	width: 4rem;
	padding: 0.85rem 0.6rem;
	border: 1px solid var(--fpt-sand);
	border-radius: var(--fpt-radius);
	background: var(--fpt-ivory);
	font-family: 'Lato', sans-serif;
	text-align: center;
}

.fpt-cta button.single_add_to_cart_button,
.fpt-btn {
	display: inline-block;
	background: var(--fpt-wine);
	color: #fff !important;
	font-family: 'Lato', sans-serif;
	font-weight: 700;
	font-size: 1rem;
	letter-spacing: 0.02em;
	border: none;
	border-radius: 999px;
	padding: 1rem 2.3rem;
	cursor: pointer;
	text-decoration: none;
	text-align: center;
	transition: background 0.2s ease, transform 0.2s ease;
}

.fpt-cta button.single_add_to_cart_button:hover,
.fpt-btn:hover {
	background: var(--fpt-dark);
	transform: translateY(-1px);
	color: #fff;
}

.fpt-btn--stub {
	background: var(--fpt-gold);
	padding: 0.85rem 1.7rem;
	white-space: nowrap;
}

.fpt-btn--stub:hover {
	background: var(--fpt-wine);
}

.fpt-trust-row {
	display: flex;
	flex-wrap: wrap;
	gap: 1.4rem;
	list-style: none;
	padding: 0;
	margin: 0;
	font-size: 0.9rem;
	color: #6b5240;
}

.fpt-trust-row li {
	display: flex;
	align-items: center;
	gap: 0.4rem;
}

.fpt-trust-row li::before {
	content: '';
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--fpt-gold);
	display: inline-block;
}

/* ---------- Ticket-Karte ---------- */
.fpt-ticket {
	display: grid;
	grid-template-columns: 1fr auto;
	background: var(--fpt-ivory);
	border-radius: var(--fpt-radius-lg);
	box-shadow: var(--fpt-shadow);
	overflow: hidden;
	border: 1px solid var(--fpt-sand);
}

.fpt-ticket__main {
	padding: 2.4rem 2.6rem;
}

.fpt-ticket__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 1.6rem 2rem;
}

.fpt-ticket__item {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.fpt-ticket__label {
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--fpt-gold);
}

.fpt-ticket__value {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.35rem;
	font-weight: 600;
	color: var(--fpt-dark);
}

.fpt-ticket__stub {
	background: var(--fpt-wine);
	color: #fff;
	width: 190px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	padding: 2rem 1.2rem;
	position: relative;
	border-left: 2px dashed rgba(255, 255, 255, 0.4);
}

.fpt-ticket__stub::before,
.fpt-ticket__stub::after {
	content: '';
	position: absolute;
	left: -13px;
	width: 24px;
	height: 24px;
	background: var(--fpt-ivory);
	border-radius: 50%;
}

.fpt-ticket__stub::before {
	top: -12px;
}

.fpt-ticket__stub::after {
	bottom: -12px;
}

.fpt-ticket__stub-label {
	font-family: 'Cormorant Garamond', cursive;
	font-size: 1.15rem;
	text-align: center;
	opacity: 0.9;
}

.fpt-ticket .fpt-btn--stub {
	background: #fff;
	color: var(--fpt-wine) !important;
	width: 100%;
}

.fpt-ticket .fpt-btn--stub:hover {
	background: var(--fpt-gold);
	color: #fff !important;
}

/* ---------- Beschreibung ---------- */
.fpt-description__content {
	color: #4a3626;
}

.fpt-description__content h2,
.fpt-description__content h3 {
	font-family: 'Cormorant Garamond', serif;
	margin-top: 2rem;
}

/* ---------- Galerie ---------- */
.fpt-gallery__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 1.4rem;
	margin-top: 2rem;
}

.fpt-gallery__item img {
	width: 100%;
	height: 260px;
	object-fit: cover;
	border-radius: var(--fpt-radius-lg) var(--fpt-radius-lg) var(--fpt-radius) var(--fpt-radius);
	box-shadow: var(--fpt-shadow);
}

/* ---------- Abschluss-CTA: bewusst randlos (full-bleed) ---------- */
.fpt-final-cta {
	background: linear-gradient(160deg, var(--fpt-dark), var(--fpt-wine) 130%);
	color: #fff;
	text-align: center;
	padding-block: 5rem;
}

.fpt-final-cta h2 {
	color: #fff;
}

.fpt-final-cta p {
	color: var(--fpt-gold-light);
	margin-bottom: 1.8rem;
	font-size: 1.1rem;
}

.fpt-final-cta .fpt-btn--primary {
	background: var(--fpt-gold);
}

.fpt-final-cta .fpt-btn--primary:hover {
	background: #fff;
	color: var(--fpt-dark) !important;
}

/* ---------- Sticky Mobile CTA ---------- */
.fpt-sticky-cta {
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--fpt-ivory);
	border-top: 1px solid var(--fpt-sand);
	padding: 0.8rem 1.2rem;
	align-items: center;
	justify-content: space-between;
	z-index: 999;
	box-shadow: 0 -6px 20px rgba(50, 16, 16, 0.12);
}

.fpt-sticky-cta__price {
	font-family: 'Cormorant Garamond', serif;
	font-weight: 700;
	font-size: 1.2rem;
	color: var(--fpt-wine);
}

.fpt-sticky-cta .fpt-btn--primary {
	padding: 0.7rem 1.4rem;
}

/* ---------- Standard-Woo-Elemente zähmen ---------- */
.fpt-course .woocommerce-tabs,
.fpt-course .woocommerce-Reviews,
.fpt-course p.stock,
.fpt-course .sku_wrapper,
.fpt-course .posted_in {
	display: none;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
	.fpt-hero {
		grid-template-columns: 1fr;
		gap: 2rem;
		text-align: center;
	}

	.fpt-hero__content {
		text-align: left;
	}

	.fpt-arch {
		max-width: 320px;
		border-radius: 160px 160px 10px 10px;
	}

	.fpt-arch img {
		height: 400px;
	}

	.fpt-ticket {
		grid-template-columns: 1fr;
	}

	.fpt-ticket__stub {
		width: 100%;
		flex-direction: row;
		border-left: none;
		border-top: 2px dashed rgba(255, 255, 255, 0.4);
		padding: 1.2rem;
	}

	.fpt-ticket__stub::before,
	.fpt-ticket__stub::after {
		top: -12px;
		left: 20%;
		bottom: auto;
	}

	.fpt-ticket__stub::after {
		left: auto;
		right: 20%;
	}

	.fpt-section {
		padding-block: 3rem;
	}

	.fpt-sticky-cta {
		display: flex;
	}

	.fpt-course {
		padding-bottom: 4.5rem; /* Platz für Sticky-Bar */
	}
}