/*
 * Videofonzelle Landing Page — CSS
 * Site palette: #ED9843 (orange), #303130 (text), Poppins
 * Scoped to .dvf-vfz-landing to avoid global conflicts.
 */

/* ── Variables ─────────────────────────────────────────────── */
.dvf-vfz-landing {
	--vfz-accent:      #ED9843;
	--vfz-accent-dark: #c8832d;
	--vfz-text:        #303130;
	--vfz-text-light:  #555;
	--vfz-text-muted:  #888;
	--vfz-bg:          #FAFAFA;
	--vfz-bg-warm:     #FFF7EF;
	--vfz-white:       #FFFFFF;
	--vfz-border:      #EBEBEB;
	--vfz-shadow:      0 4px 20px rgba(0,0,0,0.08);
	--vfz-shadow-lg:   0 8px 40px rgba(0,0,0,0.12);
	--vfz-radius:      8px;
	font-family: Poppins, sans-serif;
	color: var(--vfz-text);
}

/* ── Section base ───────────────────────────────────────────── */
.dvf-vfz-landing .vfzl-section {
	padding: 72px 60px;
}
.dvf-vfz-landing .vfzl-section--bg {
	background: var(--vfz-bg);
}
.dvf-vfz-landing .vfzl-section--warm {
	background: var(--vfz-bg-warm);
}
.dvf-vfz-landing .vfzl-section--dark {
	background: var(--vfz-text);
	color: var(--vfz-white);
}
.dvf-vfz-landing .vfzl-section--white {
	background: var(--vfz-white);
}
.dvf-vfz-landing .vfzl-inner {
	max-width: 1100px;
	margin: 0 auto;
}

/* ── Section labels / headings ──────────────────────────────── */
.dvf-vfz-landing .vfzl-label {
	display: inline-block;
	font-size: 0.7em;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--vfz-accent);
	margin-bottom: 10px;
}
.dvf-vfz-landing .vfzl-title {
	font-size: clamp(1.5rem, 2.4vw, 2.2rem);
	font-weight: 600;
	color: var(--vfz-text);
	line-height: 1.25;
	margin-bottom: 14px;
}
.dvf-vfz-landing .vfzl-divider {
	width: 52px;
	height: 3px;
	background: var(--vfz-accent);
	border-radius: 3px;
	margin-bottom: 32px;
}
.dvf-vfz-landing .vfzl-sub {
	font-size: 0.97rem;
	color: var(--vfz-text-light);
	line-height: 1.8;
	max-width: 680px;
}
.dvf-vfz-landing .vfzl-center {
	text-align: center;
}
.dvf-vfz-landing .vfzl-center .vfzl-divider {
	margin-left: auto;
	margin-right: auto;
}
.dvf-vfz-landing .vfzl-center .vfzl-sub {
	margin-left: auto;
	margin-right: auto;
}

/* ── Buttons ────────────────────────────────────────────────── */
.dvf-vfz-landing .vfzl-btn {
	display: inline-block;
	padding: 14px 34px;
	border-radius: 50px;
	font-family: Poppins, sans-serif;
	font-size: 0.95rem;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.22s;
	cursor: pointer;
	border: none;
}
.dvf-vfz-landing .vfzl-btn--primary {
	background: var(--vfz-accent);
	color: var(--vfz-white);
	box-shadow: 0 4px 18px rgba(237,152,67,0.35);
}
.dvf-vfz-landing .vfzl-btn--primary:hover {
	background: var(--vfz-accent-dark);
	transform: translateY(-2px);
	box-shadow: 0 8px 28px rgba(237,152,67,0.45);
}
.dvf-vfz-landing .vfzl-btn--outline {
	background: var(--vfz-white);
	color: var(--vfz-text);
	border: 2px solid var(--vfz-border);
}
.dvf-vfz-landing .vfzl-btn--outline:hover {
	border-color: var(--vfz-accent);
	color: var(--vfz-accent);
}

/* ── HERO ───────────────────────────────────────────────────── */
.dvf-vfz-landing .vfzl-hero {
	background: linear-gradient(160deg, #fff9f3 0%, #fff5ec 100%);
	padding: 72px 60px 60px;
	border-bottom: 1px solid var(--vfz-border);
}
.dvf-vfz-landing .vfzl-hero__inner {
	max-width: 1100px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 380px;
	gap: 60px;
	align-items: center;
}
.dvf-vfz-landing .vfzl-hero__badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--vfz-white);
	border: 1.5px solid var(--vfz-accent);
	color: var(--vfz-accent-dark);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	padding: 5px 14px;
	border-radius: 50px;
	margin-bottom: 20px;
	box-shadow: 0 2px 10px rgba(237,152,67,0.15);
}
.dvf-vfz-landing .vfzl-hero__badge::before {
	content: '●';
	color: var(--vfz-accent);
	font-size: 0.55rem;
}
.dvf-vfz-landing .vfzl-hero h1 {
	font-size: clamp(1.9rem, 3.2vw, 2.8rem);
	font-weight: 700;
	color: var(--vfz-text);
	line-height: 1.2;
	margin-bottom: 18px;
}
.dvf-vfz-landing .vfzl-hero h1 em {
	font-style: normal;
	color: var(--vfz-accent);
}
.dvf-vfz-landing .vfzl-hero__desc {
	font-size: 1.02rem;
	color: var(--vfz-text-light);
	line-height: 1.8;
	margin-bottom: 26px;
}
.dvf-vfz-landing .vfzl-hero__price-row {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 28px;
	flex-wrap: wrap;
}
.dvf-vfz-landing .vfzl-hero__price {
	background: var(--vfz-accent);
	color: var(--vfz-white);
	font-size: 1.7rem;
	font-weight: 700;
	padding: 8px 26px;
	border-radius: 50px;
	box-shadow: 0 4px 16px rgba(237,152,67,0.35);
}
.dvf-vfz-landing .vfzl-hero__price-note {
	font-size: 0.83rem;
	color: var(--vfz-text-muted);
	line-height: 1.5;
}
.dvf-vfz-landing .vfzl-hero__price-note strong {
	display: block;
	color: var(--vfz-accent-dark);
}
.dvf-vfz-landing .vfzl-hero__buttons {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}
.dvf-vfz-landing .vfzl-hero__img {
	border-radius: var(--vfz-radius);
	overflow: hidden;
	box-shadow: var(--vfz-shadow-lg);
	aspect-ratio: 3/4;
	background: linear-gradient(160deg, #fde9cc 0%, #fdf3e8 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}
.dvf-vfz-landing .vfzl-hero__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.dvf-vfz-landing .vfzl-hero__sticker {
	position: absolute;
	bottom: 16px;
	left: 16px;
	background: var(--vfz-white);
	border-radius: 6px;
	padding: 8px 14px;
	box-shadow: var(--vfz-shadow);
	font-size: 0.78rem;
	font-weight: 600;
	color: var(--vfz-text);
}

/* ── INTRO ──────────────────────────────────────────────────── */
.dvf-vfz-landing .vfzl-intro__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: start;
	margin-top: 40px;
}
.dvf-vfz-landing .vfzl-intro__text p {
	font-size: 0.97rem;
	color: var(--vfz-text-light);
	line-height: 1.85;
	margin-bottom: 18px;
}
.dvf-vfz-landing .vfzl-intro__text p:last-child { margin-bottom: 0; }
.dvf-vfz-landing .vfzl-highlight-card {
	background: var(--vfz-bg-warm);
	border-left: 3px solid var(--vfz-accent);
	padding: 16px 20px;
	border-radius: 0 var(--vfz-radius) var(--vfz-radius) 0;
	margin-bottom: 12px;
}
.dvf-vfz-landing .vfzl-highlight-card:last-child { margin-bottom: 0; }
.dvf-vfz-landing .vfzl-highlight-card strong {
	display: block;
	font-size: 0.87em;
	letter-spacing: 0.03em;
	color: var(--vfz-text);
	margin-bottom: 5px;
}
.dvf-vfz-landing .vfzl-highlight-card p {
	font-size: 0.84em;
	color: var(--vfz-text-light);
	margin: 0;
	line-height: 1.65;
}

/* ── BENEFITS ───────────────────────────────────────────────── */
.dvf-vfz-landing .vfzl-benefits__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-top: 48px;
}
.dvf-vfz-landing .vfzl-benefit-card {
	background: var(--vfz-white);
	border: 1px solid var(--vfz-border);
	border-top: 3px solid var(--vfz-accent);
	border-radius: 0 0 var(--vfz-radius) var(--vfz-radius);
	padding: 28px 24px;
	transition: box-shadow 0.22s, transform 0.22s;
}
.dvf-vfz-landing .vfzl-benefit-card:hover {
	box-shadow: var(--vfz-shadow);
	transform: translateY(-3px);
}
.dvf-vfz-landing .vfzl-benefit-card__title {
	font-size: 0.85em;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--vfz-text);
	margin-bottom: 10px;
}
.dvf-vfz-landing .vfzl-benefit-card p {
	font-size: 0.87em;
	color: var(--vfz-text-light);
	line-height: 1.7;
	margin: 0;
}

/* ── LIEFERUNG + SPECS ──────────────────────────────────────── */
.dvf-vfz-landing .vfzl-lieferung__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 52px;
	align-items: start;
	margin-top: 44px;
}
.dvf-vfz-landing .vfzl-lieferung__text p {
	font-size: 0.97rem;
	color: var(--vfz-text-light);
	line-height: 1.85;
	margin-bottom: 16px;
}
.dvf-vfz-landing .vfzl-lieferung__text p:last-child { margin-bottom: 0; }
.dvf-vfz-landing .vfzl-lieferung__text strong { color: var(--vfz-text); }
.dvf-vfz-landing .vfzl-specs-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.9em;
	border-radius: var(--vfz-radius);
	overflow: hidden;
	box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.dvf-vfz-landing .vfzl-specs-table td {
	padding: 11px 18px;
	border-bottom: 1px solid var(--vfz-border);
	vertical-align: top;
}
.dvf-vfz-landing .vfzl-specs-table tr:last-child td { border-bottom: none; }
.dvf-vfz-landing .vfzl-specs-table tr:nth-child(odd) td { background: var(--vfz-bg-warm); }
.dvf-vfz-landing .vfzl-specs-table tr:nth-child(even) td { background: var(--vfz-white); }
.dvf-vfz-landing .vfzl-specs-table td:first-child {
	font-weight: 700;
	font-size: 0.82em;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--vfz-text);
	width: 40%;
}
.dvf-vfz-landing .vfzl-specs-table td:last-child {
	color: var(--vfz-text-light);
}
.dvf-vfz-landing .vfzl-specs-table td.vfzl-spec--bold {
	font-weight: 700;
	color: var(--vfz-text);
}

/* ── VIDEOS ─────────────────────────────────────────────────── */
.dvf-vfz-landing .vfzl-videos__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	margin-top: 44px;
}
.dvf-vfz-landing .vfzl-video-card {
	background: var(--vfz-white);
	border-radius: var(--vfz-radius);
	overflow: hidden;
	box-shadow: var(--vfz-shadow);
}
.dvf-vfz-landing .vfzl-video-card__label {
	background: var(--vfz-accent);
	color: var(--vfz-white);
	padding: 10px 18px;
	font-size: 0.82em;
	font-weight: 600;
	letter-spacing: 0.03em;
}
.dvf-vfz-landing .vfzl-video-card__embed {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
}
.dvf-vfz-landing .vfzl-video-card__embed iframe {
	position: absolute;
	top: 0; left: 0;
	width: 100%; height: 100%;
	border: none;
}

/* ── EMOTIONAL ──────────────────────────────────────────────── */
.dvf-vfz-landing .vfzl-emotional {
	background: var(--vfz-text);
	color: var(--vfz-white);
	padding: 72px 60px;
	text-align: center;
}
.dvf-vfz-landing .vfzl-emotional .vfzl-label {
	color: rgba(237,152,67,0.85);
}
.dvf-vfz-landing .vfzl-emotional .vfzl-title {
	color: var(--vfz-white);
}
.dvf-vfz-landing .vfzl-emotional .vfzl-sub {
	color: rgba(255,255,255,0.75);
	margin: 0 auto 32px;
}
.dvf-vfz-landing .vfzl-quote {
	max-width: 720px;
	margin: 28px auto 36px;
	font-size: 1.05rem;
	font-style: italic;
	color: rgba(255,255,255,0.85);
	line-height: 1.8;
	border-left: 3px solid var(--vfz-accent);
	padding-left: 22px;
	text-align: left;
}

/* ── FAQ ────────────────────────────────────────────────────── */
.dvf-vfz-landing .vfzl-faq__list {
	max-width: 800px;
	margin: 44px auto 0;
}
.dvf-vfz-landing .vfzl-faq-item {
	border-bottom: 1px solid var(--vfz-border);
}
.dvf-vfz-landing .vfzl-faq-item summary {
	list-style: none;
	cursor: pointer;
	padding: 18px 0;
	font-weight: 600;
	font-size: 0.92em;
	color: var(--vfz-text);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}
.dvf-vfz-landing .vfzl-faq-item summary::-webkit-details-marker { display: none; }
.dvf-vfz-landing .vfzl-faq-item summary::after {
	content: '+';
	font-size: 1.3em;
	font-weight: 400;
	color: var(--vfz-accent);
	flex-shrink: 0;
	line-height: 1;
	transition: transform 0.2s;
}
.dvf-vfz-landing .vfzl-faq-item[open] summary::after {
	transform: rotate(45deg);
}
.dvf-vfz-landing .vfzl-faq-item__body {
	padding: 0 0 18px;
	font-size: 0.89em;
	color: var(--vfz-text-light);
	line-height: 1.8;
}

/* ── BOOKING ────────────────────────────────────────────────── */
.dvf-vfz-landing .vfzl-booking {
	background: var(--vfz-bg-warm);
	padding: 72px 60px;
	border-top: 1px solid var(--vfz-border);
}
.dvf-vfz-landing .vfzl-booking__inner {
	max-width: 700px;
	margin: 0 auto;
}
.dvf-vfz-landing .vfzl-booking__price {
	font-size: 2rem;
	font-weight: 700;
	color: var(--vfz-accent);
	margin-bottom: 4px;
}
.dvf-vfz-landing .vfzl-booking__price-note {
	font-size: 0.85rem;
	color: var(--vfz-text-muted);
	margin-bottom: 28px;
}
.dvf-vfz-landing .vfzl-booking .woocommerce {
	margin-top: 24px;
}
/* Override WC element widths in booking block */
.dvf-vfz-landing .vfzl-booking .variations,
.dvf-vfz-landing .vfzl-booking .variations_form {
	width: 100%;
}
.dvf-vfz-landing .vfzl-booking .single_add_to_cart_button {
	background: var(--vfz-accent) !important;
	border-color: var(--vfz-accent) !important;
	color: var(--vfz-white) !important;
	border-radius: 50px !important;
	padding: 14px 36px !important;
	font-family: Poppins, sans-serif !important;
	font-weight: 600 !important;
	font-size: 1rem !important;
	transition: background 0.2s, transform 0.2s !important;
}
.dvf-vfz-landing .vfzl-booking .single_add_to_cart_button:hover {
	background: var(--vfz-accent-dark) !important;
	border-color: var(--vfz-accent-dark) !important;
	transform: translateY(-2px);
}

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 900px) {
	.dvf-vfz-landing .vfzl-section { padding: 52px 32px; }
	.dvf-vfz-landing .vfzl-hero { padding: 52px 32px; }
	.dvf-vfz-landing .vfzl-hero__inner { grid-template-columns: 1fr; gap: 36px; }
	.dvf-vfz-landing .vfzl-hero__img { aspect-ratio: 4/3; order: -1; max-height: 380px; }
	.dvf-vfz-landing .vfzl-intro__grid { grid-template-columns: 1fr; gap: 32px; }
	.dvf-vfz-landing .vfzl-benefits__grid { grid-template-columns: 1fr 1fr; gap: 14px; }
	.dvf-vfz-landing .vfzl-lieferung__grid { grid-template-columns: 1fr; gap: 32px; }
	.dvf-vfz-landing .vfzl-emotional { padding: 52px 32px; }
	.dvf-vfz-landing .vfzl-booking { padding: 52px 32px; }
}
@media (max-width: 600px) {
	.dvf-vfz-landing .vfzl-section { padding: 40px 20px; }
	.dvf-vfz-landing .vfzl-hero { padding: 40px 20px; }
	.dvf-vfz-landing .vfzl-hero__buttons { flex-direction: column; }
	.dvf-vfz-landing .vfzl-benefits__grid { grid-template-columns: 1fr; }
	.dvf-vfz-landing .vfzl-videos__grid { grid-template-columns: 1fr; }
	.dvf-vfz-landing .vfzl-emotional { padding: 40px 20px; }
	.dvf-vfz-landing .vfzl-booking { padding: 40px 20px; }
	.dvf-vfz-landing .vfzl-quote { font-size: 0.95rem; }
}
