/*
Theme Name: Socialfaktor
Theme URI: https://socialfaktor.de
Description: Individuelles WooCommerce-Theme für Socialfaktor – Social-Media-Reichweite (Follower, Likes, Views).
Author: Özgür / Mavilab
Version: 0.2.35
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: hypeflow
*/

:root {
	--hf-bg: #f6f7fb;
	--hf-bg-2: #ffffff;
	--hf-bg-3: #f1f2f7;
	--hf-line: rgba(20,18,28,0.10);
	--hf-line-2: rgba(20,18,28,0.18);
	--hf-ink: #14121c;
	--hf-muted: #6b6878;
	--hf-soft: #3a3744;
	--hf-accent: #7C5CFF;
	--hf-accent-soft: rgba(124,92,255,0.10);
	--hf-accent-2: #f5a623;
	--hf-accent-grad: linear-gradient(135deg,#7C5CFF 0%,#8B5CF6 54%,#B84CFF 100%);
	--hf-success: #1faf6a;
	--hf-icon-bg: rgba(20,18,28,0.05);
	--hf-shadow: 0 10px 30px rgba(20,18,28,0.08);
	--hf-font: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
	--hf-radius: 12px;
}

* { box-sizing: border-box; }

body {
	margin: 0;
	background: var(--hf-bg);
	color: var(--hf-soft);
	font-family: var(--hf-font);
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

a { color: var(--hf-accent); text-decoration: none; }
a:hover { color: #9b82ff; }
h1, h2, h3, h4 { color: var(--hf-ink); font-weight: 600; line-height: 1.2; }
img { max-width: 100%; height: auto; }

.hf-container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* Header */
.hf-header {
	position: sticky; top: 0; z-index: 50;
	background: rgba(10, 6, 18, 0.9);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--hf-line);
}
.hf-header-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.hf-logo { display: inline-flex; align-items: center; gap: 12px; font-size: 21px; font-weight: 700; color: var(--hf-ink); }
.hf-logo .hf-mark { width: 30px; height: 30px; border-radius: 9px; background: var(--hf-accent); display: inline-flex; align-items: center; justify-content: center; color: #fff; }
.hf-logo span { color: var(--hf-accent); }
.hf-nav { display: flex; align-items: center; gap: 22px; }
.hf-nav a { display: inline-flex; align-items: center; gap: 7px; color: var(--hf-muted); font-size: 14px; }
.hf-nav a:hover { color: var(--hf-ink); }
.hf-nav-ico { display: inline-flex; }
.hf-nav-ico svg { width: 17px; height: 17px; }
.hf-header-cta { display: flex; align-items: center; gap: 14px; }
.hf-cart { color: var(--hf-soft); font-size: 14px; position: relative; }
.hf-cart .hf-badge { background: var(--hf-accent); color: #fff; font-size: 11px; border-radius: 20px; padding: 1px 7px; margin-left: 4px; }

/* Buttons */
.hf-btn {
	display: inline-flex; align-items: center; gap: 8px;
	background: var(--hf-accent); color: #fff;
	font-size: 15px; font-weight: 600;
	padding: 12px 22px; border-radius: 10px; border: 0; cursor: pointer;
	transition: background .15s ease, transform .1s ease;
}
.hf-btn:hover { background: #6b4bff; color: #fff; }
.hf-btn:active { transform: scale(0.98); }
.hf-btn-ghost { background: transparent; border: 1px solid var(--hf-line); color: var(--hf-soft); }
.hf-btn-ghost:hover { background: var(--hf-bg-2); color: var(--hf-ink); }

/* Hero */
.hf-hero { padding: 70px 0 50px; text-align: center; }
.hf-hero .hf-pill { display: inline-flex; align-items: center; gap: 7px; background: #170d28; border: 1px solid var(--hf-line); color: var(--hf-soft); font-size: 13px; padding: 6px 14px; border-radius: 20px; margin-bottom: 22px; }
.hf-hero h1 { font-size: 44px; margin: 0 0 16px; }
.hf-hero h1 em { color: var(--hf-accent); font-style: normal; }
.hf-hero p { font-size: 17px; color: var(--hf-muted); max-width: 540px; margin: 0 auto 30px; }

/* Trust strip */
.hf-trust { display: flex; flex-wrap: wrap; justify-content: center; gap: 28px; padding: 22px 0; border-top: 1px solid var(--hf-line); border-bottom: 1px solid var(--hf-line); background: var(--hf-bg-3); }
.hf-trust span { font-size: 13px; color: var(--hf-muted); }
.hf-trust b { color: var(--hf-accent); }

/* Section */
.hf-section { padding: 56px 0; }
.hf-section h2 { font-size: 28px; text-align: center; margin: 0 0 8px; }
.hf-section .hf-sub { text-align: center; color: var(--hf-muted); margin: 0 0 36px; }

/* Card grid */
.hf-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; }
.hf-card { background: var(--hf-bg-2); border: 1px solid var(--hf-line); border-radius: var(--hf-radius); padding: 22px; transition: border-color .15s ease, transform .1s ease; }
.hf-card:hover { border-color: var(--hf-accent); transform: translateY(-2px); }
.hf-card .hf-ico { font-size: 26px; }
.hf-card h3 { font-size: 17px; margin: 12px 0 4px; }
.hf-card p { font-size: 13px; color: var(--hf-muted); margin: 0; }

/* WooCommerce overrides */
.woocommerce-products-header__title, .woocommerce h1, .woocommerce h2 { color: var(--hf-ink); }
ul.products { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; list-style: none; margin: 0; padding: 0; }
ul.products li.product { background: var(--hf-bg-2); border: 1px solid var(--hf-line); border-radius: var(--hf-radius); padding: 20px; text-align: left; }
ul.products li.product:hover { border-color: var(--hf-accent); }
ul.products li.product .woocommerce-loop-product__title { font-size: 16px; color: var(--hf-ink); padding: 0; margin: 0 0 6px; }
ul.products li.product .price { color: var(--hf-accent) !important; font-weight: 600; }
ul.products li.product .price .amount { color: var(--hf-accent); }
ul.products li.product a.button, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button, .woocommerce #respond input#submit {
	background: var(--hf-accent); color: #fff; border-radius: 9px; font-weight: 600; padding: 10px 16px; border: 0;
}
.woocommerce a.button:hover, .woocommerce button.button:hover, .woocommerce button.button.alt:hover { background: #6b4bff; color: #fff; }
.woocommerce span.price, .woocommerce div.product p.price, .woocommerce div.product span.price { color: var(--hf-accent); font-weight: 600; }
.woocommerce div.product .product_title { color: var(--hf-ink); }
.woocommerce .woocommerce-message, .woocommerce-info, .woocommerce .cart-collaterals .cart_totals,
.woocommerce table.shop_table, .woocommerce-checkout #payment {
	background: var(--hf-bg-2); border: 1px solid var(--hf-line); color: var(--hf-soft); border-radius: var(--hf-radius);
}
.woocommerce table.shop_table th, .woocommerce table.shop_table td { color: var(--hf-soft); border-color: var(--hf-line); }
.woocommerce form .form-row input.input-text, .woocommerce form .form-row textarea, .select2-container--default .select2-selection--single {
	background: var(--hf-bg-3); border: 1px solid var(--hf-line); color: var(--hf-ink); border-radius: 9px; padding: 10px;
}
.woocommerce-breadcrumb { color: var(--hf-muted); }

/* Footer */
.hf-footer { border-top: 1px solid var(--hf-line); background: var(--hf-bg-3); padding: 44px 0 30px; margin-top: 60px; }
.hf-footer .hf-cols { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 28px; }
.hf-footer h4 { font-size: 14px; margin: 0 0 14px; }
.hf-footer a { display: block; color: var(--hf-muted); font-size: 13px; margin-bottom: 8px; }
.hf-footer a:hover { color: var(--hf-ink); }
.hf-footer .hf-copy { text-align: center; color: var(--hf-muted); font-size: 12px; margin-top: 34px; padding-top: 20px; border-top: 1px solid var(--hf-line); }
/* Footer-Logo: identisch zum Header (die generische .hf-footer a Regel würde sonst display:block + 13px erzwingen) */
.hf-copy .hf-logo { display: inline-flex !important; align-items: center; gap: 12px; font-size: 21px !important; margin-bottom: 0; }
.hf-copy .hf-logo .hf-word { color: var(--hf-ink); }
.hf-copy .hf-logo .hf-word span { color: var(--hf-accent); }

@media (max-width: 782px) {
	.hf-nav { display: none; }
	.hf-hero h1 { font-size: 32px; }
	.hf-footer .hf-cols { grid-template-columns: 1fr 1fr; }
}

/* ---- Konfigurator-Landingpage ---- */
.hf-cfg-wrap { padding-top: 30px; }
.hf-cfg-top { text-align: center; margin-bottom: 34px; }
.hf-cfg-top h1 { font-size: 36px; margin: 10px 0 12px; }
.hf-stars { color: var(--hf-accent-2); font-size: 15px; }
.hf-stars span { color: var(--hf-muted); font-size: 13px; }
.hf-cfg-intro { color: var(--hf-muted); max-width: 640px; margin: 0 auto; font-size: 16px; }

.hf-cfg-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.hf-cfg-card { background: var(--hf-bg-2); border: 1px solid var(--hf-line); border-radius: 16px; padding: 24px; }
.hf-cfg-card.is-featured { border-color: var(--hf-accent); box-shadow: 0 0 0 1px var(--hf-accent); }
.hf-cfg-head { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.hf-cfg-flag { font-size: 24px; }
.hf-cfg-head h3 { font-size: 20px; margin: 0; }
.hf-cfg-label { font-size: 12px; color: var(--hf-muted); margin: 16px 0 8px; }

.hf-steps { display: flex; flex-direction: column; gap: 6px; }
.hf-step { display: flex; align-items: center; gap: 10px; padding: 11px 14px; border: 1px solid var(--hf-line); border-radius: 10px; cursor: pointer; background: var(--hf-bg-3); transition: border-color .12s ease; }
.hf-step:hover { border-color: var(--hf-accent); }
.hf-step.selected { border-color: var(--hf-accent); background: rgba(124,92,255,0.12); }
.hf-step input { accent-color: var(--hf-accent); }
.hf-step-qty { font-weight: 600; color: var(--hf-ink); }
.hf-step-badge { background: var(--hf-accent); color: #fff; font-size: 10px; font-weight: 600; padding: 2px 7px; border-radius: 20px; }
.hf-step-price { margin-left: auto; color: var(--hf-accent); font-weight: 600; }

.hf-cfg-input { width: 100%; padding: 12px 14px; background: var(--hf-bg-3); color: var(--hf-ink); border: 1px solid var(--hf-line); border-radius: 10px; font-size: 15px; box-sizing: border-box; }
.hf-cfg-input::placeholder { color: rgba(255,255,255,0.35); }
select.hf-cfg-input { appearance: none; }

.hf-cfg-benefits { list-style: none; padding: 0; margin: 18px 0; }
.hf-cfg-benefits li { font-size: 13px; color: var(--hf-soft); padding: 5px 0 5px 24px; position: relative; }
.hf-cfg-benefits li::before { content: "✓"; position: absolute; left: 0; color: var(--hf-success); font-weight: 700; }

.hf-cfg-btn { width: 100%; justify-content: center; font-size: 16px; padding: 15px; }

.hf-cfg-section { margin: 56px 0; }
.hf-cfg-section h2 { font-size: 26px; text-align: center; margin: 0 0 28px; }
.hf-prose { max-width: 760px; margin: 0 auto; color: var(--hf-soft); }
.hf-prose p { margin: 0 0 16px; line-height: 1.75; }

.hf-faq { max-width: 760px; margin: 0 auto; }
.hf-faq details { border: 1px solid var(--hf-line); border-radius: 10px; background: var(--hf-bg-2); margin-bottom: 10px; padding: 4px 18px; }
.hf-faq summary { cursor: pointer; padding: 14px 0; font-weight: 600; color: var(--hf-ink); list-style: none; }
.hf-faq summary::-webkit-details-marker { display: none; }
.hf-faq summary::after { content: "+"; float: right; color: var(--hf-accent); font-size: 20px; line-height: 1; }
.hf-faq details[open] summary::after { content: "–"; }
.hf-faq-a { padding: 0 0 16px; color: var(--hf-muted); line-height: 1.7; }

@media (max-width: 782px) {
	.hf-cfg-grid { grid-template-columns: 1fr; }
	.hf-cfg-top h1 { font-size: 28px; }
}

/* ---- Vergleichstabelle ---- */
.hf-compare { max-width: 760px; margin: 0 auto; overflow-x: auto; }
.hf-compare table { width: 100%; border-collapse: collapse; background: var(--hf-bg-2); border: 1px solid var(--hf-line); border-radius: var(--hf-radius); overflow: hidden; }
.hf-compare th, .hf-compare td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--hf-line); font-size: 14px; }
.hf-compare thead th { color: var(--hf-muted); font-weight: 500; }
.hf-compare th.hf-us, .hf-compare td.hf-us { color: var(--hf-ink); background: rgba(124,92,255,0.08); }
.hf-compare thead th.hf-us { color: var(--hf-accent); font-weight: 700; }
.hf-compare td:first-child { color: var(--hf-muted); }
.hf-compare tr:last-child td { border-bottom: 0; }

/* ---- Produkt-Kacheln (Shop & Kategorie) ---- */
.woocommerce ul.products,
ul.products { display: grid !important; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 20px; list-style: none; margin: 0 !important; padding: 0; }
.woocommerce ul.products li.product,
ul.products li.product {
	width: auto !important; float: none !important; margin: 0 !important; padding: 0 !important;
	background: var(--hf-bg-2); border: 1px solid var(--hf-line); border-radius: 16px; overflow: hidden;
	text-align: left; display: flex; flex-direction: column;
	transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.woocommerce ul.products li.product:hover,
ul.products li.product:hover { transform: translateY(-5px); border-color: var(--hf-accent); box-shadow: 0 10px 30px rgba(124,92,255,0.18); }
.hf-pc-link { display: block; color: inherit; }
.hf-pc-link:hover { color: inherit; }
.hf-pc-tile { height: 140px; display: flex; align-items: center; justify-content: center; position: relative; }
.hf-pc-tile::after { content: ""; position: absolute; inset: 0; background: rgba(10,6,18,0.12); }
.hf-pc-tile svg { width: 56px; height: 56px; position: relative; z-index: 1; filter: drop-shadow(0 2px 6px rgba(0,0,0,.3)); transition: transform .25s ease; }
.woocommerce ul.products li.product:hover .hf-pc-tile svg { transform: scale(1.12); }
.hf-pc-body { padding: 16px 18px 4px; }
.hf-pc-cat { font-size: 11px; text-transform: uppercase; letter-spacing: .06em; color: var(--hf-muted); }
.hf-pc-title { font-size: 16px; margin: 6px 0 8px; color: var(--hf-ink); }
.hf-pc-price { color: var(--hf-accent); font-weight: 600; font-size: 15px; }
.hf-pc-btn { margin: 14px 18px 18px; display: flex; justify-content: center; }

/* Sortier-Dropdown dunkel */
.woocommerce-ordering select, .woocommerce .woocommerce-result-count {
	background: var(--hf-bg-2); color: var(--hf-soft); border: 1px solid var(--hf-line); border-radius: 9px; padding: 8px 12px;
}
.woocommerce .woocommerce-result-count { background: transparent; border: 0; padding: 0; }

/* Plattform-Kachel auf Startseite */
.hf-cat { padding: 0 !important; overflow: hidden; }
.hf-cat .hf-cat-tile { height: 120px; display: flex; align-items: center; justify-content: center; }
.hf-cat .hf-cat-tile svg { width: 48px; height: 48px; filter: drop-shadow(0 2px 6px rgba(0,0,0,.3)); }
.hf-cat .hf-cat-body { padding: 16px 18px 20px; }
.hf-cat h3 { margin: 0 0 4px; }

/* ---- Einblend-Animation ---- */
.hf-reveal { opacity: 0; transform: translateY(16px); transition: opacity .5s ease, transform .5s ease; }
.hf-reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .hf-reveal { opacity: 1; transform: none; transition: none; } }

/* ---- Hero zweispaltig + Visual ---- */
.hf-hero { position: relative; overflow: hidden; text-align: left; }
.hf-hero-glow { position: absolute; top: -120px; right: -80px; width: 460px; height: 460px; background: radial-gradient(circle, rgba(124,92,255,0.28), transparent 60%); filter: blur(20px); pointer-events: none; z-index: 0; }
.hf-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center; }
.hf-hero-text h1 { font-size: 48px; margin: 0 0 16px; }
.hf-hero-text p { margin: 0 0 26px; max-width: 480px; }
.hf-hero-proof { display: flex; align-items: center; gap: 12px; margin-top: 26px; font-size: 13px; color: var(--hf-muted); }
.hf-avatars { display: flex; }
.hf-avatars span { width: 30px; height: 30px; border-radius: 50%; border: 2px solid var(--hf-bg); margin-left: -8px; }
.hf-avatars span:first-child { margin-left: 0; background: #7C5CFF; }
.hf-avatars span:nth-child(2) { background: #C6FF4F; }
.hf-avatars span:nth-child(3) { background: #ff6bd5; }
.hf-avatars span:nth-child(4) { background: #34d6ff; }

.hf-hero-visual { position: relative; }
.hf-hero-card { background: var(--hf-bg-2); border: 1px solid var(--hf-line); border-radius: 18px; padding: 22px; box-shadow: 0 20px 50px rgba(0,0,0,0.4); animation: hfFloat 6s ease-in-out infinite; }
.hf-hc-head { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.hf-hc-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--hf-accent); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; }
.hf-hc-name { color: var(--hf-ink); font-weight: 600; font-size: 14px; }
.hf-hc-sub { color: var(--hf-muted); font-size: 12px; }
.hf-hc-badge { margin-left: auto; background: rgba(95,211,154,0.15); color: var(--hf-success); font-size: 12px; font-weight: 600; padding: 4px 10px; border-radius: 8px; }
.hf-hc-big { font-size: 30px; font-weight: 700; color: var(--hf-ink); margin-bottom: 8px; }
.hf-hc-chart { width: 100%; height: 110px; display: block; }
.hf-hc-line { stroke-dasharray: 600; stroke-dashoffset: 600; animation: hfDraw 2.2s ease forwards .3s; }
.hf-hc-dot { animation: hfPulse 1.8s ease-in-out infinite 2.4s; }
.hf-hc-stats { display: flex; gap: 10px; margin-top: 14px; }
.hf-hc-stats div { flex: 1; background: var(--hf-bg-3); border: 1px solid var(--hf-line); border-radius: 10px; padding: 10px 12px; }
.hf-hc-stats span { display: block; font-size: 11px; color: var(--hf-muted); }
.hf-hc-stats strong { font-size: 15px; color: var(--hf-ink); }

.hf-bubble { position: absolute; width: 54px; height: 54px; border-radius: 16px; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 24px rgba(0,0,0,0.35); }
.hf-bubble svg { width: 28px; height: 28px; }
.hf-bubble-1 { top: -22px; left: -18px; animation: hfFloat 5s ease-in-out infinite; }
.hf-bubble-2 { bottom: 30px; left: -26px; animation: hfFloat 7s ease-in-out infinite .6s; }
.hf-bubble-3 { top: 40px; right: -20px; animation: hfFloat 6.2s ease-in-out infinite .3s; }

@keyframes hfFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes hfDraw { to { stroke-dashoffset: 0; } }
@keyframes hfPulse { 0%,100% { r: 5; opacity: 1; } 50% { r: 8; opacity: .6; } }
@media (prefers-reduced-motion: reduce) { .hf-hero-card, .hf-bubble, .hf-hc-line, .hf-hc-dot { animation: none; } .hf-hc-line { stroke-dashoffset: 0; } }

/* ---- Feature-Kacheln (Beliebte Services) ---- */
.hf-feat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
.hf-feat { display: block; background: var(--hf-bg-2); border: 1px solid var(--hf-line); border-radius: 16px; overflow: hidden; color: inherit; transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease; }
.hf-feat:hover { transform: translateY(-5px); border-color: var(--hf-accent); box-shadow: 0 14px 36px rgba(124,92,255,0.2); color: inherit; }
.hf-feat-top { position: relative; height: 92px; display: flex; align-items: center; justify-content: center; }
.hf-feat-top::after { content: ""; position: absolute; inset: 0; background: rgba(10,6,18,0.1); }
.hf-feat-top svg { width: 40px; height: 40px; position: relative; z-index: 1; filter: drop-shadow(0 2px 6px rgba(0,0,0,.3)); transition: transform .25s ease; }
.hf-feat:hover .hf-feat-top svg { transform: scale(1.15) rotate(-4deg); }
.hf-feat-badge { position: absolute; top: 10px; right: 10px; z-index: 2; background: rgba(10,6,18,0.55); color: #fff; font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 20px; backdrop-filter: blur(4px); }
.hf-feat-body { padding: 16px 18px 18px; }
.hf-feat-body h3 { font-size: 17px; margin: 4px 0 12px; }
.hf-feat-row { display: flex; align-items: center; justify-content: space-between; }
.hf-feat-cta { color: var(--hf-accent); font-size: 13px; font-weight: 600; }

@media (max-width: 860px) {
	.hf-hero-grid { grid-template-columns: 1fr; }
	.hf-hero-visual { margin-top: 30px; max-width: 420px; }
	.hf-hero-text h1 { font-size: 34px; }
}

/* ================= REDESIGN v2 (premium, ruhig, conversion) ================= */

/* Plattform-Chips im Hero */
.hf-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 6px; }
.hf-chip { display: inline-flex; align-items: center; gap: 7px; padding: 8px 14px; border: 1px solid var(--hf-line); border-radius: 30px; color: var(--hf-soft); font-size: 13px; background: var(--hf-bg-2); transition: border-color .15s ease, color .15s ease; }
.hf-chip:hover { border-color: var(--hf-line-2); color: var(--hf-ink); }
.hf-chip-ico { display: inline-flex; }
.hf-chip-ico svg { width: 16px; height: 16px; }

/* Hero-Preview-Card (konkret statt abstrakt) */
.hf-preview { background: var(--hf-bg-2); border: 1px solid var(--hf-line); border-radius: 18px; padding: 22px; max-width: 380px; margin-left: auto; }
.hf-preview-head { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.hf-preview-head strong { display: block; color: var(--hf-ink); font-size: 15px; }
.hf-preview-head span { color: var(--hf-muted); font-size: 12px; }
.hf-preview-label { font-size: 12px; color: var(--hf-muted); margin-bottom: 8px; }
.hf-qty-chips { display: flex; gap: 8px; margin-bottom: 18px; }
.hf-qchip { flex: 1; padding: 10px 0; border: 1px solid var(--hf-line); background: var(--hf-bg-3); color: var(--hf-soft); border-radius: 10px; font-size: 14px; font-weight: 600; cursor: pointer; transition: all .15s ease; }
.hf-qchip:hover { border-color: var(--hf-line-2); }
.hf-qchip.active { border-color: var(--hf-accent); background: var(--hf-accent-soft); color: var(--hf-ink); }
.hf-preview-foot { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; border-top: 1px solid var(--hf-line); }
.hf-preview-foot span { display: block; font-size: 12px; color: var(--hf-muted); }
.hf-prev-price { font-size: 24px; font-weight: 700; color: var(--hf-ink); }
.hf-preview-status { margin-top: 14px; font-size: 12px; color: var(--hf-muted); }

/* Kleines Plattform-Icon (ruhig, neutral) */
.hf-pc-icon { width: 42px; height: 42px; border-radius: 11px; display: inline-flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.04); border: 1px solid var(--hf-line); flex: none; }
.hf-pc-icon svg { width: 22px; height: 22px; }

/* Produktkarte ruhig */
.woocommerce ul.products li.product, ul.products li.product { background: var(--hf-bg-2); border: 1px solid var(--hf-line); }
.woocommerce ul.products li.product:hover, ul.products li.product:hover { border-color: var(--hf-line-2); box-shadow: none; transform: translateY(-3px); }
.hf-pc { display: block; color: inherit; padding: 18px 18px 6px; }
.hf-pc:hover { color: inherit; }
.hf-pc-head { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.hf-pc-cat { font-size: 11px; text-transform: uppercase; letter-spacing: .06em; color: var(--hf-muted); }
.hf-pc-title { font-size: 16px; margin: 0 0 8px; color: var(--hf-ink); }
.hf-pc-flag {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 24px;
	height: 18px;
	margin-right: 7px;
	border-radius: 5px;
	border: 1px solid color-mix(in srgb, var(--hf-accent) 24%, var(--hf-line));
	background: color-mix(in srgb, var(--hf-accent) 8%, transparent);
	color: color-mix(in srgb, var(--hf-accent) 72%, var(--hf-ink));
	font-size: 10px;
	font-weight: 800;
	letter-spacing: .03em;
	vertical-align: 1px;
}
.hf-pc-price { color: var(--hf-ink); font-weight: 700; font-size: 17px; margin-bottom: 12px; }
.hf-pc-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.hf-pc-tags span { font-size: 11px; color: var(--hf-muted); background: var(--hf-bg-3); border: 1px solid var(--hf-line); border-radius: 6px; padding: 3px 8px; }
.hf-pc-btn { margin: 14px 18px 18px; display: flex; justify-content: center; }

/* Kategorie-Karte ruhig */
.hf-cat { display: block; }
.hf-cat-ico { width: 46px; height: 46px; border-radius: 12px; display: inline-flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.04); border: 1px solid var(--hf-line); margin-bottom: 14px; }
.hf-cat-ico svg { width: 24px; height: 24px; }
.hf-cat h3 { margin: 0 0 4px; }
.hf-cat p { color: var(--hf-muted); font-size: 13px; margin: 0; }

/* Feature-Karte ruhig */
.hf-feat { display: block; background: var(--hf-bg-2); border: 1px solid var(--hf-line); border-radius: 16px; padding: 18px; color: inherit; transition: transform .18s ease, border-color .18s ease; }
.hf-feat:hover { transform: translateY(-4px); border-color: var(--hf-line-2); color: inherit; box-shadow: none; }
.hf-feat-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.hf-feat-badge { background: var(--hf-accent-soft); color: #b9a9ff; font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 20px; }
.hf-feat h3 { font-size: 16px; margin: 4px 0 10px; }
.hf-feat .hf-pc-tags { margin-bottom: 14px; }
.hf-feat-row { display: flex; align-items: center; justify-content: space-between; padding-top: 12px; border-top: 1px solid var(--hf-line); }
.hf-feat-cta { color: var(--hf-accent); font-size: 13px; font-weight: 600; }

/* Schritte */
.hf-steps3 { grid-template-columns: repeat(3, 1fr); }
.hf-step-num { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 50%; background: var(--hf-accent-soft); color: var(--hf-accent); font-weight: 700; margin-bottom: 12px; }

/* Trust-Strip ruhiger */
.hf-trust { gap: 22px; }
.hf-trust span { color: var(--hf-soft); }

/* Mobile-Menü */
.hf-burger { display: flex; flex-direction: column; gap: 5px; width: 40px; height: 40px; align-items: center; justify-content: center; background: transparent; border: 1px solid var(--hf-line); border-radius: 10px; cursor: pointer; }
.hf-burger span { width: 18px; height: 2px; background: var(--hf-ink); transition: transform .2s ease, opacity .2s ease; }
.hf-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hf-burger.is-open span:nth-child(2) { opacity: 0; }
.hf-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.hf-cart-ico { display: none; }
/* Mobiles Slide-in-Panel (fixiert, eigener Scroll, Body-Scroll-Sperre) */
.hf-nav-backdrop { position: fixed; inset: 0; background: rgba(12,10,22,0.45); opacity: 0; visibility: hidden; transition: opacity .26s ease, visibility .26s ease; z-index: 1100; }
.hf-nav-backdrop.is-open { opacity: 1; visibility: visible; }

.hf-mobile-nav { display: flex; flex-direction: column; position: fixed; top: 0; right: 0; bottom: 0; width: min(86vw, 340px); background: var(--hf-bg-2); border-left: 1px solid var(--hf-line); box-shadow: -10px 0 34px rgba(0,0,0,0.18); transform: translateX(100%); transition: transform .28s ease; z-index: 1200; overflow-y: auto; -webkit-overflow-scrolling: touch; padding-bottom: 30px; }
.hf-mobile-nav.is-open { transform: translateX(0); }

/* WP Admin-Bar verschiebt das Panel nach unten, sonst wird der Kopf abgeschnitten */
body.admin-bar .hf-mobile-nav,
body.admin-bar .hf-nav-backdrop { top: 32px; }
@media screen and (max-width: 782px) {
	body.admin-bar .hf-mobile-nav,
	body.admin-bar .hf-nav-backdrop { top: 46px; }
}

.hf-mnav-head { display: flex; align-items: center; gap: 12px; padding: 14px 18px; border-bottom: 1px solid var(--hf-line); position: sticky; top: 0; background: var(--hf-bg-2); z-index: 2; }
.hf-mnav-close { width: 36px; height: 36px; margin-left: auto; display: inline-flex; align-items: center; justify-content: center; font-size: 26px; line-height: 1; color: var(--hf-muted); background: transparent; border: 1px solid var(--hf-line); border-radius: 9px; cursor: pointer; flex-shrink: 0; }
.hf-mnav-close:hover { color: var(--hf-ink); background: var(--hf-bg-3); }

/* Zurück-Button in Unterebene */
.hf-mnav-back { display: inline-flex; align-items: center; gap: 10px; padding: 0; background: transparent; border: 0; font-family: inherit; font-size: 16px; font-weight: 700; color: var(--hf-ink); cursor: pointer; }
.hf-mnav-back > svg:first-child { width: 22px; height: 22px; color: var(--hf-muted); }
.hf-mnav-back .hf-mnav-ico svg { width: 20px; height: 20px; }

/* Drill-down-Ebenen */
.hf-mnav-level { display: none; }
.hf-mnav-level.is-active { display: block; animation: hfMnavSlide .22s ease; }
@keyframes hfMnavSlide { from { opacity: 0; transform: translateX(16px); } to { opacity: 1; transform: none; } }
.hf-mnav-more .hf-mnav-row-txt { color: var(--hf-accent); font-weight: 600; }
.hf-mnav-sico { color: var(--hf-muted); }
.hf-mnav-sico svg { width: 20px; height: 20px; }

/* Suchfeld oben im Panel */
.hf-mnav-search { position: relative; margin: 16px 18px; }
.hf-mnav-search-ico { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); width: 18px; height: 18px; color: var(--hf-muted); pointer-events: none; }
.hf-mnav-search input { width: 100%; padding: 13px 14px 13px 42px; background: var(--hf-bg-3); border: 1px solid var(--hf-line); border-radius: 12px; font-size: 14px; color: var(--hf-ink); }
.hf-mnav-search input:focus { outline: none; border-color: var(--hf-accent); }

/* Beliebte Suchanfragen */
.hf-mnav-label { padding: 8px 22px; font-size: 13px; font-weight: 700; color: var(--hf-ink); }
.hf-mnav-pop { padding-bottom: 10px; border-bottom: 1px solid var(--hf-line); }

/* Zeilen (beliebt + Plattformen): Icon + Text + Chevron */
.hf-mnav-row { display: flex; align-items: center; gap: 13px; width: 100%; padding: 13px 22px; color: var(--hf-ink); font-size: 15px; background: transparent; border: 0; font-family: inherit; text-align: left; cursor: pointer; }
.hf-mnav-row:hover { background: var(--hf-bg-3); }
.hf-mnav-ico { display: inline-flex; flex-shrink: 0; }
.hf-mnav-ico svg { width: 20px; height: 20px; }
.hf-mnav-row-txt { flex: 1; }
.hf-mnav-chev { width: 18px; height: 18px; color: var(--hf-muted); flex-shrink: 0; }
.hf-mnav-plats { padding-top: 6px; }

body.hf-nav-open { overflow: hidden; }

@media (max-width: 860px) {
	.hf-nav { display: none; }
	.hf-burger { display: flex; }
	.hf-hide-mobile { display: none; }
	.hf-cart-ico { display: inline; font-size: 18px; }
	.hf-hero-grid { grid-template-columns: 1fr; }
	.hf-hero-text h1 { font-size: 32px; }
	.hf-preview { margin: 24px auto 0; }
	.hf-steps3 { grid-template-columns: 1fr; }
	.hf-trust { gap: 12px 18px; padding: 16px 0; }
	.hf-trust span { font-size: 12px; }
	.hf-section { padding: 40px 0; }
}

/* Konfigurator: einzelne Karte zentrieren (Produkte ohne Deutsch-Variante) */
.hf-cfg-grid--single { grid-template-columns: minmax(0, 460px); justify-content: center; }

/* ---- Hero Schnellkauf-Widget ---- */
.hf-quickbuy { position: relative; z-index: 2; background: var(--hf-bg-2); border: 1px solid var(--hf-line); border-radius: 18px; padding: 22px; max-width: 400px; margin-left: auto; box-shadow: 0 24px 60px rgba(0,0,0,0.45); }
.hf-qb-head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.hf-qb-head strong { display: block; color: var(--hf-ink); font-size: 15px; }
.hf-qb-head > div span { color: var(--hf-muted); font-size: 12px; }
.hf-qb-tag { margin-left: auto; background: var(--hf-accent-soft); color: #b9a9ff; font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 20px; }
.hf-qb-products { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; margin-bottom: 16px; }
.hf-qprod {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	min-height: 42px;
	padding: 9px 10px;
	border: 1px solid var(--hf-line);
	border-radius: 11px;
	background: #fff;
	color: var(--hf-soft);
	font: inherit;
	font-size: 13px;
	font-weight: 750;
	cursor: pointer;
}
.hf-qprod span { display: inline-flex; }
.hf-qprod svg { width: 17px; height: 17px; }
.hf-qprod:hover,
.hf-qprod.active {
	border-color: var(--hf-accent);
	background: var(--hf-accent-soft);
	color: var(--hf-ink);
}
.hf-qb-spark { width: 100%; height: 48px; display: block; margin-bottom: 14px; opacity: .9; }
.hf-qb-input { width: 100%; padding: 12px 14px; background: var(--hf-bg-3); color: var(--hf-ink); border: 1px solid var(--hf-line); border-radius: 10px; font-size: 15px; box-sizing: border-box; margin-bottom: 16px; }
.hf-qb-input::placeholder { color: rgba(255,255,255,0.3); }
.hf-qb-input:focus { outline: none; border-color: var(--hf-accent); }
.hf-qb-btn { width: 100%; justify-content: center; font-size: 15px; padding: 14px; }
.hf-quickbuy .hf-preview-label { font-size: 12px; color: var(--hf-muted); margin-bottom: 8px; }
.hf-quickbuy .hf-qty-chips { margin-bottom: 16px; }
.hf-quickbuy .hf-preview-status { margin-top: 12px; font-size: 12px; color: var(--hf-muted); text-align: center; }

/* ---- Schnellkauf-Modul (eigener Abschnitt) ---- */
.hf-quickbuy-module { display: grid; grid-template-columns: 1fr 400px; gap: 40px; align-items: center; }
.hf-quickbuy-module .hf-quickbuy { margin: 0; max-width: none; }
.hf-qbm-text h2 { font-size: 28px; margin: 14px 0 14px; }
.hf-qbm-text p { color: var(--hf-muted); margin: 0 0 18px; max-width: 460px; }
.hf-qbm-list { list-style: none; padding: 0; margin: 0; }
.hf-qbm-list li { position: relative; padding: 6px 0 6px 26px; color: var(--hf-soft); font-size: 14px; }
.hf-qbm-list li::before { content: "✓"; position: absolute; left: 0; color: var(--hf-success); font-weight: 700; }
@media (max-width: 860px) {
	.hf-quickbuy-module { grid-template-columns: 1fr; gap: 26px; }
	.hf-quickbuy-module .hf-quickbuy { max-width: 100%; }
}

/* ---- Plattform-Übersicht (gruppiert) ---- */
.hf-archive .hf-arch-title { font-size: 32px; text-align: center; margin: 0 0 6px; }
.hf-archive .hf-sub { text-align: center; }
.hf-arch-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin: 0 0 40px; }
.hf-fchip { padding: 8px 16px; border: 1px solid var(--hf-line); background: var(--hf-bg-2); color: var(--hf-soft); border-radius: 30px; font-size: 13px; font-weight: 500; cursor: pointer; transition: all .15s ease; }
.hf-fchip:hover { border-color: var(--hf-line-2); }
.hf-fchip.active { background: var(--hf-accent); border-color: var(--hf-accent); color: #fff; }

.hf-plat-group { margin-bottom: 40px; }
.hf-plat-head { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.hf-plat-head h2 { font-size: 20px; margin: 0; text-align: left; }
.hf-svc-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 14px; }
.hf-svc-row { display: flex; align-items: center; gap: 14px; padding: 16px 18px; background: var(--hf-bg-2); border: 1px solid var(--hf-line); border-radius: 14px; color: inherit; transition: border-color .15s ease, transform .12s ease; }
.hf-svc-row:hover { border-color: var(--hf-accent); transform: translateX(3px); color: inherit; }
.hf-svc-ico { width: 40px; height: 40px; border-radius: 11px; display: inline-flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.04); border: 1px solid var(--hf-line); flex: none; }
.hf-svc-ico svg { width: 22px; height: 22px; }
.hf-svc-info { flex: 1; min-width: 0; }
.hf-svc-info strong { display: block; color: var(--hf-ink); font-size: 15px; font-weight: 600; }
.hf-svc-info span { color: var(--hf-muted); font-size: 13px; }
.hf-svc-arrow { color: var(--hf-muted); font-size: 24px; line-height: 1; flex: none; }
.hf-svc-row:hover .hf-svc-arrow { color: var(--hf-accent); }

/* ================= LIGHT THEME OVERRIDES ================= */
.hf-header { background: rgba(255,255,255,0.85); }
.hf-logo .hf-mark { color: #fff; }
.hf-pill { background: var(--hf-accent-soft); border-color: rgba(124,92,255,0.25); color: #5a45c2; }

/* kleine Icon-Flächen auf Hell */
.hf-pc-icon, .hf-cat-ico, .hf-svc-ico { background: var(--hf-icon-bg); }

/* Inputs / Platzhalter */
.hf-cfg-input::placeholder, .hf-qb-input::placeholder, .hf-config input::placeholder { color: rgba(20,18,28,0.4); }
.hf-qb-input, .smm-config input[type="number"], .smm-config input[type="url"] { background: var(--hf-bg-3); color: var(--hf-ink); border-color: var(--hf-line); }

/* Badges/Tags Akzenttext dunkler */
.hf-feat-badge, .hf-qb-tag { color: #5a45c2; }
.hf-hc-badge { background: rgba(31,175,106,0.12); color: #1faf6a; }

/* Schatten weicher */
.hf-hero-card, .hf-quickbuy { box-shadow: var(--hf-shadow); }
.woocommerce ul.products li.product:hover, ul.products li.product:hover,
.hf-feat:hover { box-shadow: var(--hf-shadow); }

/* Bubbles: Icons weiß auf Farbverlauf */
.hf-bubble { color: #fff; }

/* Glow dezenter auf Weiß */
.hf-hero-glow { opacity: .5; }

/* Sterne in Gold statt Lime */
.hf-stars { color: #f5a623; }

/* Hero/Buttons: Akzent-Button-Text bleibt weiß (ok). Ghost-Button auf Hell */
.hf-btn-ghost { color: var(--hf-soft); border-color: var(--hf-line-2); }
.hf-btn-ghost:hover { background: var(--hf-bg-3); color: var(--hf-ink); }

/* Konfigurator-Karte (Produktseite) Inputs hell */
.hf-cfg-input { background: var(--hf-bg-3); color: var(--hf-ink); border-color: var(--hf-line); }
.hf-cfg-card { background: var(--hf-bg-2); box-shadow: var(--hf-shadow); }
.hf-cfg-card.is-featured { box-shadow: 0 0 0 1px var(--hf-accent), var(--hf-shadow); }

/* FAQ/Prose Lesefarbe */
.hf-faq summary { color: var(--hf-ink); }
.hf-prose p { color: var(--hf-soft); }
.hf-hero .hf-pill { background: var(--hf-accent-soft); border-color: rgba(124,92,255,0.25); color: #5a45c2; }

/* Plattform-Kacheln zentriert + luftiger */
.hf-cat { text-align: center; padding: 30px 20px; }
.hf-cat .hf-cat-ico { display: flex; margin: 0 auto 16px; }
.hf-cat h3 { margin: 0 0 6px; }
.hf-cat p { margin: 0; }

/* Plattform-Kacheln: mehr Luft, größere Icon-Fläche */
.hf-cat { padding: 36px 24px 32px; }
.hf-cat .hf-cat-ico { width: 56px; height: 56px; border-radius: 14px; margin: 0 auto 18px; }
.hf-cat .hf-cat-ico svg { width: 28px; height: 28px; }
.hf-section .hf-grid { gap: 18px; }

/* Plattform-Kacheln: Inhalt vertikal mittig (nicht oben kleben) */
.hf-cat { display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 190px; }
.hf-cat .hf-cat-ico { margin: 0 0 18px; }

/* ---- Produktseite: SEO-Inhalt ---- */
.hf-prose h3 { font-size: 19px; margin: 26px 0 8px; color: var(--hf-ink); }
.hf-tips-wrap { display: grid; grid-template-columns: 1.3fr .7fr; gap: 32px; align-items: center; max-width: 900px; margin: 0 auto; }
.hf-tips { list-style: none; padding: 0; margin: 0; }
.hf-tips li { position: relative; padding: 9px 0 9px 30px; color: var(--hf-soft); border-bottom: 1px solid var(--hf-line); }
.hf-tips li:last-child { border-bottom: 0; }
.hf-tips li::before { content: "✓"; position: absolute; left: 0; top: 9px; color: var(--hf-accent); font-weight: 700; }
.hf-tips-vis { background: var(--hf-bg-2); border: 1px solid var(--hf-line); border-radius: 16px; padding: 16px; }
@media (max-width: 700px) { .hf-tips-wrap { grid-template-columns: 1fr; } .hf-tips-vis { display: none; } }

/* ---- Plattformen-Übersicht: SEO-Inhalt unten ---- */
.hf-arch-seo { margin-top: 50px; padding-top: 20px; border-top: 1px solid var(--hf-line); }
.hf-arch-split { display: grid; grid-template-columns: 1.2fr .8fr; gap: 36px; align-items: center; }
.hf-arch-split p { color: var(--hf-soft); margin: 0 0 14px; }
.hf-constellation { background: var(--hf-bg-2); border: 1px solid var(--hf-line); border-radius: 16px; padding: 18px; }
@media (max-width: 760px) { .hf-arch-split { grid-template-columns: 1fr; } }

/* ---- Kategorie-Visual (Plattform-Card) ---- */
.hf-platcard { background: var(--hf-bg-2); border: 1px solid var(--hf-line); border-radius: 16px; padding: 24px; text-align: center; }
.hf-platcard-ico { display: inline-flex; align-items: center; justify-content: center; width: 64px; height: 64px; border-radius: 16px; background: var(--hf-icon-bg); margin-bottom: 14px; }
.hf-platcard-ico svg { width: 34px; height: 34px; }
.hf-platcard-stat strong { display: block; font-size: 28px; color: var(--hf-ink); font-weight: 700; }
.hf-platcard-stat span { color: var(--hf-muted); font-size: 13px; }
.hf-platcard-tiles { display: flex; flex-direction: column; gap: 8px; margin-top: 18px; }
.hf-platcard-tiles div { display: flex; align-items: center; gap: 8px; justify-content: center; font-size: 13px; color: var(--hf-soft); background: var(--hf-bg-3); border: 1px solid var(--hf-line); border-radius: 9px; padding: 9px; }

/* ---- Footer v2 ---- */
.hf-footer { padding: 50px 0 26px; }
.hf-foot-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; margin-bottom: 36px; }
.hf-foot-grid-2 { grid-template-columns: 1fr 1fr 1.4fr; border-top: 1px solid var(--hf-line); padding-top: 32px; }
.hf-foot-col h4 { display: flex; align-items: center; gap: 8px; font-size: 14px; margin: 0 0 14px; color: var(--hf-ink); }
.hf-foot-col h4 svg { width: 16px; height: 16px; }
.hf-foot-ico { font-style: normal; }
.hf-foot-col a { display: block; color: var(--hf-muted); font-size: 13px; margin-bottom: 9px; }
.hf-foot-col a:hover { color: var(--hf-ink); }
.hf-foot-note { color: var(--hf-muted); font-size: 13px; margin: 0 0 12px; }
.hf-pay { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.hf-pay-badge { display: inline-flex; border-radius: 6px; overflow: hidden; box-shadow: 0 1px 3px rgba(0,0,0,0.12); transition: transform 0.15s, box-shadow 0.15s; }
.hf-pay-badge:hover { transform: translateY(-1px); box-shadow: 0 3px 8px rgba(0,0,0,0.18); }
.hf-pay-badge svg { width: 52px; height: 33px; display: block; }
.hf-news { display: flex; flex-wrap: wrap; gap: 8px; }
.hf-news input[type="email"] { flex: 1; min-width: 0; padding: 11px 13px; background: var(--hf-bg-2); border: 1px solid var(--hf-line); border-radius: 10px; color: var(--hf-ink); font-size: 14px; }
.hf-news .hf-btn { padding: 11px 18px; flex-shrink: 0; }
.hf-news-consent { display: flex; align-items: flex-start; gap: 9px; width: 100%; margin-top: 4px; cursor: pointer; }
.hf-news-consent input[type="checkbox"] { margin-top: 3px; flex-shrink: 0; accent-color: var(--hf-accent); width: 15px; height: 15px; }
.hf-news-consent span { font-size: 11.5px; color: var(--hf-muted); line-height: 1.5; }
.hf-news-consent a { display: inline !important; color: var(--hf-accent); text-decoration: underline; font-size: 11.5px !important; margin: 0 !important; }
.hf-about p { color: var(--hf-muted); font-size: 12.5px; line-height: 1.7; margin: 0 0 10px; }
.hf-copy { display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center; color: var(--hf-muted); font-size: 12px; padding-top: 26px; border-top: 1px solid var(--hf-line); }
.hf-copy a { color: var(--hf-muted); }
.hf-copy a:hover { color: var(--hf-ink); }
@media (max-width: 860px) {
	.hf-foot-grid, .hf-foot-grid-2 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
	.hf-foot-grid, .hf-foot-grid-2 { grid-template-columns: 1fr; }
	.hf-news input[type="email"], .hf-news .hf-btn { width: 100%; }
}

/* Footer: 5 Spalten oben (inkl. Rechtliches) */
.hf-foot-grid { grid-template-columns: repeat(5, 1fr); }
.hf-foot-grid-2 { grid-template-columns: 1fr 1fr 1.4fr; }
@media (max-width: 980px) {
	.hf-foot-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.hf-foot-grid > .hf-foot-col:nth-child(5) { grid-column: span 2; }
}
@media (max-width: 640px) { .hf-foot-grid, .hf-foot-grid-2 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 460px) {
	.hf-foot-grid, .hf-foot-grid-2 { grid-template-columns: 1fr; }
	.hf-foot-grid > .hf-foot-col:nth-child(5) { grid-column: auto; }
}

/* Logo-Mark Icon — einheitliche Größe überall (Header + Footer) */
.hf-mark svg { width: 20px; height: 20px; }

/* Wortmarke als ein Element (kein Flex-Abstand zwischen social/faktor) */
.hf-logo .hf-word { color: var(--hf-ink); }
.hf-logo .hf-word span { color: var(--hf-accent); }

/* ---- Startseite: Profil-Wachstums-Grafik ---- */
.hf-growthcard { background: var(--hf-bg-2); border: 1px solid var(--hf-line); border-radius: 18px; padding: 22px; box-shadow: var(--hf-shadow); }
.hf-gc-head { display: flex; align-items: center; gap: 11px; margin-bottom: 16px; }
.hf-gc-av { width: 40px; height: 40px; border-radius: 50%; background: var(--hf-accent); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-weight: 700; }
.hf-gc-head strong { display: block; color: var(--hf-ink); font-size: 14px; }
.hf-gc-head > div span { color: var(--hf-muted); font-size: 12px; }
.hf-gc-badge { margin-left: auto; background: rgba(31,175,106,0.12); color: var(--hf-success); font-size: 12px; font-weight: 600; padding: 4px 10px; border-radius: 8px; }
.hf-gc-num { font-size: 30px; font-weight: 700; color: var(--hf-ink); margin-bottom: 8px; }
.hf-gc-num small { font-size: 14px; font-weight: 500; color: var(--hf-muted); }
.hf-gc-stats { display: flex; gap: 10px; margin-top: 14px; }
.hf-gc-stats div { flex: 1; background: var(--hf-bg-3); border: 1px solid var(--hf-line); border-radius: 10px; padding: 10px; text-align: center; }
.hf-gc-stats strong { display: block; color: var(--hf-ink); font-size: 15px; }
.hf-gc-stats span { color: var(--hf-muted); font-size: 11px; }

/* ---- Startseite: Trust-Benefit-Karten ---- */
.hf-promise-section { padding-top: 64px; }
.hf-section-head { max-width: 760px; margin: 0 auto 34px; text-align: center; }
.hf-section-head h2 { margin-bottom: 12px; }
.hf-promise-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; align-items: stretch; }
.hf-promise-card {
	min-height: 430px;
	border-radius: 20px;
	padding: 34px 30px;
	position: relative;
	overflow: hidden;
	box-shadow: 0 18px 42px rgba(20,18,28,0.10);
}
.hf-promise-card::after {
	content: "";
	position: absolute;
	inset: auto -40px -72px auto;
	width: 170px;
	height: 170px;
	border-radius: 50%;
	background: rgba(255,255,255,0.16);
	pointer-events: none;
}
.hf-promise-card h3 { font-size: 23px; margin: 22px 0 16px; }
.hf-promise-card p { font-size: 15px; line-height: 1.72; margin: 0 0 18px; }
.hf-promise-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border-radius: 15px;
	background: rgba(255,255,255,0.18);
	color: currentColor;
	animation: hfIconVibe 3.6s ease-in-out infinite;
	transform-origin: 50% 55%;
}
.hf-promise-icon svg { width: 32px; height: 32px; }
.hf-promise-card-primary {
	background: linear-gradient(145deg,#7C5CFF 0%,#6D47D8 100%);
	color: #fff;
}
.hf-promise-card-primary h3,
.hf-promise-card-primary p { color: #fff; }
.hf-promise-card-soft {
	background: #eadcff;
	color: #7C5CFF;
}
.hf-promise-card-soft h3 { color: #7C5CFF; }
.hf-promise-card-soft p { color: #7159b8; }
.hf-promise-card-warm {
	background: linear-gradient(145deg,#ff7b2f 0%,#f15a18 100%);
	color: #fff;
}
.hf-promise-card-warm h3,
.hf-promise-card-warm p { color: #fff; }
.hf-promise-card:nth-child(2) .hf-promise-icon { animation-delay: .35s; }
.hf-promise-card:nth-child(3) .hf-promise-icon { animation-delay: .7s; }
@keyframes hfIconVibe {
	0%, 82%, 100% { transform: translate3d(0,0,0) rotate(0deg); }
	86% { transform: translate3d(-1px,0,0) rotate(-2deg); }
	90% { transform: translate3d(1px,-1px,0) rotate(2deg); }
	94% { transform: translate3d(-1px,1px,0) rotate(-1deg); }
	98% { transform: translate3d(1px,0,0) rotate(1deg); }
}
@media (max-width: 920px) {
	.hf-promise-grid { grid-template-columns: 1fr; }
	.hf-promise-card { min-height: 0; }
}
@media (max-width: 520px) {
	.hf-promise-section { padding-top: 44px; }
	.hf-promise-card { border-radius: 16px; padding: 26px 22px; }
	.hf-promise-card h3 { font-size: 20px; }
}
@media (prefers-reduced-motion: reduce) {
	.hf-promise-icon { animation: none; }
}
/* ---- Startseite: Beliebte Pakete v3 ---- */
.hf-feat-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; }
.hf-feat-premium {
	position: relative;
	min-height: 238px;
	padding: 20px;
	border-radius: 18px;
	overflow: hidden;
	background:
		linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.90) 100%),
		var(--hf-feat-grad);
	border: 1px solid color-mix(in srgb, var(--hf-feat-solid) 24%, var(--hf-line));
	box-shadow: 0 10px 28px rgba(20,18,28,0.07);
}
.hf-feat-premium::before {
	content: "";
	position: absolute;
	inset: 0 0 auto;
	height: 5px;
	background: var(--hf-feat-grad);
}
.hf-feat-premium:hover {
	transform: translateY(-5px);
	border-color: color-mix(in srgb, var(--hf-feat-solid) 58%, var(--hf-line));
	box-shadow: 0 18px 42px color-mix(in srgb, var(--hf-feat-solid) 20%, transparent);
}
.hf-feat-glow {
	position: absolute;
	right: -42px;
	top: -42px;
	width: 132px;
	height: 132px;
	border-radius: 50%;
	background: var(--hf-feat-grad);
	opacity: .12;
	pointer-events: none;
}
.hf-feat-premium .hf-feat-head {
	position: relative;
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	gap: 12px;
	align-items: start;
	margin-bottom: 16px;
}
.hf-brand-tile {
	width: 54px;
	height: 54px;
	border-radius: 15px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	background: var(--hf-feat-grad);
	box-shadow: 0 12px 26px color-mix(in srgb, var(--hf-feat-solid) 28%, transparent);
	transition: transform .18s ease;
}
.hf-brand-tile svg { width: 28px; height: 28px; filter: drop-shadow(0 2px 5px rgba(0,0,0,.24)); }
.hf-feat-premium:hover .hf-brand-tile { transform: translateY(-2px) rotate(-3deg) scale(1.04); }
.hf-feat-titleblock { min-width: 0; padding-top: 3px; }
.hf-feat-premium .hf-pc-cat {
	display: block;
	color: color-mix(in srgb, var(--hf-feat-solid) 78%, var(--hf-muted));
	font-weight: 800;
	letter-spacing: .08em;
	margin-bottom: 5px;
}
.hf-feat-premium h3 {
	font-size: 18px;
	line-height: 1.25;
	margin: 0;
}
.hf-feat-premium .hf-feat-badge {
	position: relative;
	top: auto;
	right: auto;
	align-self: start;
	white-space: nowrap;
	background: color-mix(in srgb, var(--hf-feat-solid) 13%, #fff);
	color: color-mix(in srgb, var(--hf-feat-solid) 78%, #24202d);
	border: 1px solid color-mix(in srgb, var(--hf-feat-solid) 18%, transparent);
	padding: 6px 10px;
	border-radius: 999px;
}
.hf-feat-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 14px;
}
.hf-feat-meta span {
	font-size: 12px;
	font-weight: 650;
	color: var(--hf-soft);
	background: rgba(255,255,255,0.72);
	border: 1px solid var(--hf-line);
	border-radius: 999px;
	padding: 6px 9px;
}
.hf-feat-premium .hf-pc-tags { margin-bottom: 16px; }
.hf-feat-premium .hf-pc-tags span {
	background: color-mix(in srgb, var(--hf-feat-solid) 8%, #fff);
	border-color: color-mix(in srgb, var(--hf-feat-solid) 14%, var(--hf-line));
	color: var(--hf-soft);
	border-radius: 999px;
	padding: 5px 9px;
}
.hf-feat-premium .hf-feat-row {
	position: relative;
	margin-top: auto;
	padding-top: 15px;
	border-top: 1px solid color-mix(in srgb, var(--hf-feat-solid) 14%, var(--hf-line));
}
.hf-feat-premium .hf-pc-price {
	color: var(--hf-ink);
	font-size: 21px;
	line-height: 1;
}
.hf-feat-premium .hf-pc-price small {
	font-size: 12px;
	color: var(--hf-muted);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .06em;
}
.hf-feat-premium .hf-feat-cta {
	color: #fff;
	background: var(--hf-feat-grad);
	border-radius: 999px;
	padding: 9px 12px;
	box-shadow: 0 10px 20px color-mix(in srgb, var(--hf-feat-solid) 18%, transparent);
}

/* Farbige Icon-Tiles in Chips, Plattform-Karten und Schnellkauf */
.hf-chip-ico,
.hf-cat-ico,
.hf-pc-icon {
	background: color-mix(in srgb, currentColor 11%, #fff);
	border-color: color-mix(in srgb, currentColor 22%, var(--hf-line));
	box-shadow: 0 8px 18px color-mix(in srgb, currentColor 10%, transparent);
}
.hf-chip-ico {
	width: 24px;
	height: 24px;
	border-radius: 8px;
	align-items: center;
	justify-content: center;
}
.hf-chip-ico svg { width: 14px; height: 14px; }
.hf-cat:hover .hf-cat-ico,
.hf-chip:hover .hf-chip-ico,
.hf-qb-head .hf-pc-icon:hover {
	transform: translateY(-1px);
}
@media (max-width: 620px) {
	.hf-feat-premium .hf-feat-head { grid-template-columns: auto minmax(0, 1fr); }
	.hf-feat-premium .hf-feat-badge { grid-column: 1 / -1; justify-self: start; }
	.hf-feat-premium .hf-feat-row { align-items: flex-start; gap: 12px; flex-direction: column; }
	.hf-feat-premium .hf-feat-cta { width: 100%; text-align: center; }
}
/* Beliebte Pakete: Kartenhöhe angleichen */
.hf-feat-premium { display: flex; flex-direction: column; min-height: 276px; }
.hf-feat-premium .hf-feat-row { margin-top: auto; }
/* ---- Produktseiten v3 ---- */
.hf-product-hero {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	gap: 34px;
	align-items: center;
	margin: 0 0 34px;
	padding: 34px;
	border: 1px solid color-mix(in srgb, var(--hf-prod-solid) 22%, var(--hf-line));
	border-radius: 24px;
	overflow: hidden;
	background:
		linear-gradient(135deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.82) 100%),
		var(--hf-prod-grad);
	box-shadow: 0 18px 46px rgba(20,18,28,0.09);
}
.hf-product-hero::before {
	content: "";
	position: absolute;
	inset: 0 0 auto;
	height: 6px;
	background: var(--hf-prod-grad);
}
.hf-product-hero::after {
	content: "";
	position: absolute;
	right: -80px;
	top: -110px;
	width: 280px;
	height: 280px;
	border-radius: 50%;
	background: var(--hf-prod-grad);
	opacity: .12;
	pointer-events: none;
}
.hf-product-hero-copy { position: relative; z-index: 1; }
.hf-product-kicker {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	color: color-mix(in srgb, var(--hf-prod-solid) 78%, var(--hf-ink));
	font-size: 13px;
	font-weight: 800;
	letter-spacing: .04em;
	text-transform: uppercase;
	margin-bottom: 14px;
}
.hf-product-brand {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 11px;
	color: #fff;
	background: var(--hf-prod-grad);
	box-shadow: 0 10px 22px color-mix(in srgb, var(--hf-prod-solid) 24%, transparent);
}
.hf-product-brand svg { width: 19px; height: 19px; }
.hf-product-hero h1 {
	font-size: clamp(34px, 4.4vw, 56px);
	line-height: 1.05;
	margin: 10px 0 16px;
	letter-spacing: 0;
}
.hf-product-hero .hf-cfg-intro {
	max-width: 680px;
	margin: 0;
	font-size: 17px;
}
.hf-product-hero-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
	margin-top: 22px;
}
.hf-product-hero-tags span {
	background: #fff;
	border: 1px solid color-mix(in srgb, var(--hf-prod-solid) 16%, var(--hf-line));
	border-radius: 999px;
	color: var(--hf-soft);
	font-size: 13px;
	font-weight: 650;
	padding: 8px 11px;
}
.hf-product-hero-card {
	position: relative;
	z-index: 1;
	background: rgba(255,255,255,0.82);
	border: 1px solid rgba(255,255,255,0.72);
	border-radius: 20px;
	padding: 24px;
	box-shadow: 0 18px 44px rgba(20,18,28,0.10);
}
.hf-product-brand-large { width: 62px; height: 62px; border-radius: 18px; margin-bottom: 18px; }
.hf-product-brand-large svg { width: 32px; height: 32px; }
.hf-product-hero-card strong { display: block; color: var(--hf-ink); font-size: 21px; line-height: 1.2; margin-bottom: 6px; }
.hf-product-hero-card > span:not(.hf-product-brand) { color: var(--hf-muted); font-size: 13px; }
.hf-product-mini-bars { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; align-items: end; height: 70px; margin-top: 24px; }
.hf-product-mini-bars i { display: block; border-radius: 8px 8px 5px 5px; background: var(--hf-prod-grad); opacity: .78; }
.hf-product-mini-bars i:nth-child(1) { height: 24px; opacity: .28; }
.hf-product-mini-bars i:nth-child(2) { height: 34px; opacity: .40; }
.hf-product-mini-bars i:nth-child(3) { height: 46px; opacity: .55; }
.hf-product-mini-bars i:nth-child(4) { height: 58px; opacity: .72; }
.hf-product-mini-bars i:nth-child(5) { height: 68px; }

.hf-cfg-card-premium {
	position: relative;
	overflow: hidden;
	border-radius: 20px;
	border-color: color-mix(in srgb, var(--hf-prod-solid) 18%, var(--hf-line));
	box-shadow: 0 16px 42px rgba(20,18,28,0.09);
}
.hf-cfg-card-premium::before {
	content: "";
	position: absolute;
	inset: 0 0 auto;
	height: 5px;
	background: var(--hf-prod-grad);
}
.hf-cfg-card-premium::after {
	content: "";
	position: absolute;
	right: -46px;
	top: -50px;
	width: 140px;
	height: 140px;
	border-radius: 50%;
	background: var(--hf-prod-grad);
	opacity: .10;
	pointer-events: none;
}
.hf-cfg-card-premium.is-featured {
	border-color: color-mix(in srgb, var(--hf-prod-solid) 36%, var(--hf-accent));
	box-shadow: 0 16px 46px color-mix(in srgb, var(--hf-prod-solid) 15%, rgba(20,18,28,0.08));
}
.hf-cfg-card-premium .hf-cfg-head { position: relative; z-index: 1; }
.hf-cfg-card-premium .hf-cfg-flag {
	width: 50px;
	height: 50px;
	border-radius: 15px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--hf-prod-grad);
	box-shadow: 0 10px 22px color-mix(in srgb, var(--hf-prod-solid) 22%, transparent);
}
.hf-cfg-card-premium .hf-cfg-head h3 { font-size: 21px; }
.hf-buyfacts {
	position: relative;
	z-index: 1;
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	margin: -6px 0 16px;
}
.hf-buyfacts span {
	background: color-mix(in srgb, var(--hf-prod-solid) 7%, #fff);
	border: 1px solid color-mix(in srgb, var(--hf-prod-solid) 14%, var(--hf-line));
	border-radius: 999px;
	color: var(--hf-muted);
	font-size: 12px;
	font-weight: 700;
	padding: 6px 9px;
}
.hf-cfg-card-premium .hf-cfg-label {
	font-weight: 750;
	color: color-mix(in srgb, var(--hf-prod-solid) 62%, var(--hf-muted));
}
.hf-cfg-card-premium .hf-cfg-input {
	background: #fff;
	border-color: color-mix(in srgb, var(--hf-prod-solid) 14%, var(--hf-line));
	box-shadow: 0 1px 0 rgba(20,18,28,0.03);
}
.hf-cfg-card-premium .hf-cfg-input:focus {
	outline: none;
	border-color: color-mix(in srgb, var(--hf-prod-solid) 58%, var(--hf-accent));
	box-shadow: 0 0 0 4px color-mix(in srgb, var(--hf-prod-solid) 10%, transparent);
}
.hf-cfg-card-premium .hf-cfg-benefits {
	background: color-mix(in srgb, var(--hf-prod-solid) 6%, #fff);
	border: 1px solid color-mix(in srgb, var(--hf-prod-solid) 12%, var(--hf-line));
	border-radius: 14px;
	padding: 12px 14px;
}
.hf-cfg-card-premium .hf-cfg-benefits li { padding-left: 24px; }
.hf-cfg-card-premium .hf-cfg-benefits li::before { color: color-mix(in srgb, var(--hf-prod-solid) 78%, var(--hf-success)); }
.hf-cfg-card-premium .hf-cfg-btn {
	background: var(--hf-prod-grad);
	box-shadow: 0 12px 24px color-mix(in srgb, var(--hf-prod-solid) 20%, transparent);
}
.hf-cfg-card-premium .hf-cfg-btn:hover { filter: saturate(1.04) brightness(.98); }

.hf-cfg-wrap > .hf-trust {
	background: #fff;
	border: 1px solid var(--hf-line);
	box-shadow: var(--hf-shadow);
}
.hf-mobile-buybar {
	display: none;
	position: fixed;
	left: 14px;
	right: 14px;
	bottom: 14px;
	z-index: 45;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 12px 14px;
	border-radius: 14px;
	background: rgba(20,18,28,0.94);
	color: #fff;
	box-shadow: 0 18px 42px rgba(20,18,28,0.28);
	backdrop-filter: blur(10px);
}
.hf-mobile-buybar:hover { color: #fff; }
.hf-mobile-buybar span { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; color: rgba(255,255,255,0.74); font-size: 12px; }
.hf-mobile-buybar strong {
	flex: none;
	background: var(--hf-prod-grad);
	border-radius: 10px;
	padding: 8px 11px;
	font-size: 13px;
}
@media (max-width: 880px) {
	.hf-product-hero { grid-template-columns: 1fr; padding: 28px 22px; }
	.hf-product-hero-card { display: none; }
}
@media (max-width: 520px) {
	.hf-product-hero { margin-bottom: 24px; padding: 24px 22px; border-radius: 20px; }
	.hf-product-kicker { margin-bottom: 10px; }
	.hf-product-hero h1 { font-size: 31px; margin: 8px 0 12px; }
	.hf-product-hero .hf-cfg-intro { font-size: 15px; }
	.hf-product-hero-tags { margin-top: 16px; gap: 7px; }
	.hf-product-hero-tags span { font-size: 12px; }
	.hf-cfg-card-premium { border-radius: 16px; }
	.hf-cfg-card-premium .hf-cfg-benefits { display: none; }
	.hf-mobile-buybar { display: flex; }
	body:has(.hf-mobile-buybar) { padding-bottom: 78px; }
	.hf-buyfacts span { font-size: 11px; padding: 5px 8px; }
}
/* ---- Socialfaktor Lila-System: keine orange Trust-Karte ---- */
.hf-promise-card-warm {
	background: linear-gradient(90deg,#9c7cff 0%,#cbbcff 48%,#f5f1ff 100%);
	color: #4f3f91;
}
.hf-promise-card-warm h3 { color: #3c2f78; }
.hf-promise-card-warm p { color: #5f52a0; }
.hf-promise-card-warm .hf-promise-icon {
	background: rgba(124,92,255,0.13);
	color: #6f4cff;
}
.hf-promise-card-warm::after { background: rgba(124,92,255,0.10); }

/* ---- Service-Seiten v3 ---- */
.hf-archive { padding-top: 44px; }
.hf-archive-hero {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 250px;
	gap: 30px;
	align-items: center;
	margin: 0 0 30px;
	padding: 32px;
	border-radius: 24px;
	overflow: hidden;
	border: 1px solid color-mix(in srgb, var(--hf-arch-solid) 20%, var(--hf-line));
	background:
		linear-gradient(135deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.84) 100%),
		var(--hf-arch-grad);
	box-shadow: 0 18px 46px rgba(20,18,28,0.09);
}
.hf-archive-hero::before {
	content: "";
	position: absolute;
	inset: 0 0 auto;
	height: 6px;
	background: var(--hf-arch-grad);
}
.hf-archive-hero::after {
	content: "";
	position: absolute;
	right: -78px;
	top: -96px;
	width: 250px;
	height: 250px;
	border-radius: 50%;
	background: var(--hf-arch-grad);
	opacity: .12;
	pointer-events: none;
}
.hf-archive-kicker {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: color-mix(in srgb, var(--hf-arch-solid) 78%, var(--hf-ink));
	font-size: 13px;
	font-weight: 800;
	letter-spacing: .05em;
	text-transform: uppercase;
	margin-bottom: 14px;
}
.hf-archive-brand,
.hf-svc-brand,
.hf-svc-ico {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	background: var(--hf-arch-grad, var(--hf-svc-grad));
	box-shadow: 0 10px 22px color-mix(in srgb, var(--hf-arch-solid, var(--hf-svc-solid)) 22%, transparent);
}
.hf-archive-brand { width: 36px; height: 36px; border-radius: 12px; }
.hf-archive-brand svg { width: 20px; height: 20px; }
.hf-archive-brand-large { width: 66px; height: 66px; border-radius: 19px; margin-bottom: 16px; }
.hf-archive-brand-large svg { width: 34px; height: 34px; }
.hf-archive .hf-arch-title {
	text-align: left;
	font-size: clamp(34px, 4.2vw, 54px);
	line-height: 1.06;
	margin: 0 0 12px;
}
.hf-archive .hf-sub {
	text-align: left;
	max-width: 680px;
	margin: 0;
	font-size: 16px;
}
.hf-archive-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
	margin-top: 20px;
}
.hf-archive-tags span {
	background: #fff;
	border: 1px solid color-mix(in srgb, var(--hf-arch-solid) 14%, var(--hf-line));
	border-radius: 999px;
	color: var(--hf-soft);
	font-size: 13px;
	font-weight: 650;
	padding: 8px 11px;
}
.hf-archive-visual {
	position: relative;
	z-index: 1;
	background: rgba(255,255,255,0.82);
	border: 1px solid rgba(255,255,255,0.72);
	border-radius: 20px;
	padding: 24px;
	text-align: center;
	box-shadow: 0 18px 44px rgba(20,18,28,0.10);
}
.hf-archive-visual strong { display: block; color: var(--hf-ink); font-size: 42px; line-height: 1; }
.hf-archive-visual > span:not(.hf-archive-brand) { color: var(--hf-muted); font-size: 13px; }
.hf-arch-chips {
	justify-content: flex-start;
	margin: 0 0 34px;
	padding: 10px;
	background: #fff;
	border: 1px solid var(--hf-line);
	border-radius: 18px;
	box-shadow: 0 10px 26px rgba(20,18,28,0.05);
}
.hf-fchip { font-weight: 700; }
.hf-fchip.active { background: var(--hf-accent); border-color: var(--hf-accent); color: #fff; box-shadow: 0 8px 18px rgba(124,92,255,0.20); }

.hf-plat-group {
	position: relative;
	margin-bottom: 34px;
	padding: 22px;
	background: rgba(255,255,255,0.72);
	border: 1px solid var(--hf-line);
	border-radius: 22px;
	box-shadow: 0 12px 34px rgba(20,18,28,0.06);
}
.hf-plat-head { margin-bottom: 18px; }
.hf-svc-brand { width: 52px; height: 52px; border-radius: 15px; background: var(--hf-svc-grad); }
.hf-svc-brand svg { width: 28px; height: 28px; }
.hf-plat-head h2 { font-size: 23px; }
.hf-plat-head p { margin: 3px 0 0; color: var(--hf-muted); font-size: 13px; }
.hf-svc-grid { grid-template-columns: repeat(auto-fit, minmax(310px, 1fr)); gap: 14px; }
.hf-svc-row {
	position: relative;
	gap: 14px;
	padding: 18px;
	border-radius: 17px;
	background:
		linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.92) 100%),
		var(--hf-svc-grad);
	border-color: color-mix(in srgb, var(--hf-svc-solid) 14%, var(--hf-line));
	box-shadow: 0 8px 20px rgba(20,18,28,0.05);
}
.hf-svc-row::before {
	content: "";
	position: absolute;
	inset: 0 auto 0 0;
	width: 4px;
	background: var(--hf-svc-grad);
	opacity: .9;
}
.hf-svc-row:hover {
	border-color: color-mix(in srgb, var(--hf-svc-solid) 48%, var(--hf-line));
	transform: translateY(-3px);
	box-shadow: 0 14px 30px color-mix(in srgb, var(--hf-svc-solid) 14%, transparent);
}
.hf-svc-ico {
	width: 48px;
	height: 48px;
	border-radius: 14px;
	background: var(--hf-svc-grad);
	border: 0;
	flex: none;
}
.hf-svc-ico svg { width: 25px; height: 25px; filter: drop-shadow(0 2px 5px rgba(0,0,0,.22)); }
.hf-svc-info strong { font-size: 16px; font-weight: 750; }
.hf-svc-flag {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 25px;
	height: 18px;
	margin-right: 8px;
	border-radius: 5px;
	border: 1px solid color-mix(in srgb, var(--hf-svc-solid) 26%, var(--hf-line));
	background: color-mix(in srgb, var(--hf-svc-solid) 8%, transparent);
	color: color-mix(in srgb, var(--hf-svc-solid) 78%, var(--hf-ink));
	font-size: 10px;
	font-weight: 850;
	letter-spacing: .03em;
	vertical-align: 1px;
}
.hf-svc-info span { display: block; color: color-mix(in srgb, var(--hf-svc-solid) 78%, var(--hf-ink)); font-size: 15px; font-weight: 800; margin-top: 3px; }
.hf-svc-info em { display: block; color: var(--hf-muted); font-style: normal; font-size: 12px; margin-top: 5px; }
.hf-svc-cta {
	flex: none;
	color: #fff;
	background: var(--hf-svc-grad);
	border-radius: 999px;
	padding: 9px 12px;
	font-size: 12px;
	font-weight: 800;
	box-shadow: 0 9px 18px color-mix(in srgb, var(--hf-svc-solid) 16%, transparent);
}
.hf-svc-section { margin-top: 20px; }
.hf-svc-section:first-of-type { margin-top: 4px; }
.hf-svc-section-title {
	margin: 0 0 10px;
	text-align: center;
	font-size: 16px;
	font-weight: 850;
	color: var(--hf-ink);
}
.hf-svc-row { min-height: 118px; padding: 18px 56px 18px 18px; }
.hf-svc-flag {
	position: absolute;
	top: 12px;
	right: 14px;
	z-index: 2;
	display: block;
	min-width: 0;
	height: auto;
	margin: 0;
	border: 0;
	background: transparent;
	color: inherit;
	font-size: 21px;
	line-height: 1;
	letter-spacing: 0;
	filter: drop-shadow(0 2px 4px rgba(20,18,28,.12));
}
.hf-pc { position: relative; }
.hf-pc-flag {
	position: absolute;
	top: 12px;
	right: 14px;
	z-index: 2;
	display: block;
	min-width: 0;
	height: auto;
	margin: 0;
	border: 0;
	background: transparent;
	color: inherit;
	font-size: 21px;
	line-height: 1;
	letter-spacing: 0;
	filter: drop-shadow(0 2px 4px rgba(20,18,28,.12));
}
@media (max-width: 760px) {
	.hf-archive-hero { grid-template-columns: 1fr; padding: 26px 22px; }
	.hf-archive-visual { display: none; }
	.hf-arch-chips { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; }
	.hf-fchip { white-space: nowrap; }
	.hf-svc-grid { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
	.hf-archive .hf-arch-title { font-size: 32px; }
	.hf-plat-group { padding: 16px; border-radius: 18px; }
	.hf-svc-row { align-items: flex-start; }
	.hf-svc-cta { display: none; }
}
/* ---- Startseite: langer SEO-/Info-Block mit Bild ---- */
.hf-story-section { background: #fff; border-top: 1px solid var(--hf-line); }
.hf-story { max-width: 880px; margin: 0 auto; }
.hf-story-head { text-align: center; margin-bottom: 28px; }
.hf-story-head h2 { font-size: clamp(30px, 4vw, 44px); margin: 14px 0 14px; }
.hf-story-head p,
.hf-story-copy p,
.hf-story-grid p {
	color: var(--hf-soft);
	font-size: 16px;
	line-height: 1.82;
	margin: 0 0 18px;
}
.hf-story-copy { max-width: 780px; margin: 0 auto; }
.hf-story-image { max-width: 520px; margin: 30px auto 28px; }
.hf-story-image img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 692 / 757;
	border-radius: 20px;
	border: 1px solid var(--hf-line);
	box-shadow: 0 16px 38px rgba(20,18,28,0.09);
}
.hf-story-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
	margin: 30px 0;
}
.hf-story-grid > div {
	background:
		linear-gradient(135deg, rgba(255,255,255,0.98), rgba(246,242,255,0.86)),
		linear-gradient(90deg,#7c5cff,#f4efff);
	border: 1px solid rgba(124,92,255,0.16);
	border-radius: 18px;
	padding: 22px;
	box-shadow: 0 10px 28px rgba(20,18,28,0.06);
}
.hf-story-grid h3 { font-size: 19px; margin: 0 0 10px; }
.hf-story-grid p { font-size: 14.5px; margin-bottom: 0; }
@media (max-width: 760px) {
	.hf-story { max-width: none; }
	.hf-story-head { text-align: left; }
	.hf-story-grid { grid-template-columns: 1fr; }
	.hf-story-image img { border-radius: 16px; }
}
/* Hamburger auch auf Desktop sichtbar (zeigt alle Plattformen) */
.hf-burger { display: flex; }

/* ---- Kontaktseite ---- */
.hf-contact-form { background: var(--hf-bg-2); border: 1px solid var(--hf-line); border-radius: 16px; padding: 24px; box-shadow: var(--hf-shadow); }
.hf-contact-form label { display: block; font-size: 13px; color: var(--hf-muted); margin-bottom: 14px; }
.hf-contact-form .hf-cfg-input { margin-top: 6px; width: 100%; }
.hf-contact-form textarea.hf-cfg-input { resize: vertical; min-height: 120px; font-family: inherit; }
.hf-notice { padding: 12px 16px; border-radius: 10px; margin-bottom: 16px; font-size: 14px; }
.hf-notice-ok { background: rgba(31,175,106,0.12); color: #137a4a; border: 1px solid rgba(31,175,106,0.3); }
.hf-notice-err { background: rgba(163,57,45,0.1); color: #a3392d; border: 1px solid rgba(163,57,45,0.3); }

/* ---- Dashboard-Visuals für Produkt-/Service-Hero ---- */
.hf-product-hero-media,
.hf-archive-visual-media {
	padding: 0;
	overflow: hidden;
	background: #fff;
}
.hf-product-hero-media img,
.hf-archive-visual-media img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 250px;
	object-fit: cover;
	object-position: center;
}
.hf-product-hero-media { min-height: 320px; }
.hf-archive-visual-media { min-height: 260px; }

/* ---- Kontaktseite v2 ---- */
.hf-contact-hero {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 300px;
	gap: 32px;
	align-items: center;
	margin-bottom: 34px;
	padding: 34px;
	border-radius: 24px;
	border: 1px solid rgba(124,92,255,0.18);
	background:
		linear-gradient(135deg, rgba(255,255,255,0.97), rgba(245,241,255,0.88)),
		linear-gradient(90deg,#7c5cff,#f4efff);
	box-shadow: 0 18px 46px rgba(20,18,28,0.09);
	overflow: hidden;
}
.hf-contact-hero h1 { font-size: clamp(34px, 4.4vw, 54px); margin: 14px 0 12px; }
.hf-contact-hero p { color: var(--hf-soft); max-width: 650px; font-size: 16px; line-height: 1.75; margin: 0; }
.hf-contact-tags { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 20px; }
.hf-contact-tags span {
	background: #fff;
	border: 1px solid rgba(124,92,255,0.16);
	border-radius: 999px;
	color: var(--hf-soft);
	font-size: 13px;
	font-weight: 650;
	padding: 8px 11px;
}
.hf-contact-visual {
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 18px 44px rgba(20,18,28,0.10);
}
.hf-contact-visual img { display: block; width: 100%; aspect-ratio: 1 / 1.05; object-fit: cover; }
.hf-contact-layout { display: grid; grid-template-columns: 360px minmax(0, 1fr); gap: 24px; align-items: start; }
.hf-contact-side { display: grid; gap: 14px; }
.hf-contact-card,
.hf-contact-form {
	background: var(--hf-bg-2);
	border: 1px solid var(--hf-line);
	border-radius: 18px;
	box-shadow: var(--hf-shadow);
}
.hf-contact-card { padding: 22px; }
.hf-contact-card span {
	display: inline-flex;
	width: 42px;
	height: 42px;
	border-radius: 13px;
	align-items: center;
	justify-content: center;
	background: var(--hf-accent-soft);
	color: var(--hf-accent);
	font-weight: 800;
	margin-bottom: 12px;
}
.hf-contact-card h3 { margin: 0 0 8px; font-size: 18px; }
.hf-contact-card p { margin: 0; color: var(--hf-muted); font-size: 14px; line-height: 1.65; }
.hf-contact-form { padding: 26px; }
.hf-contact-fields { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.hf-contact-form label { display: block; font-size: 13px; color: var(--hf-muted); margin-bottom: 14px; font-weight: 650; }
.hf-contact-form .hf-cfg-input { margin-top: 7px; width: 100%; background: #fff; }
.hf-contact-form textarea.hf-cfg-input { resize: vertical; min-height: 150px; font-family: inherit; }
.hf-contact-submit { width: 100%; justify-content: center; }
.hf-contact-privacy { font-size: 12px; color: var(--hf-muted); margin: 10px 0 0; line-height: 1.6; }
.hf-hp-field { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
@media (max-width: 860px) {
	.hf-contact-hero,
	.hf-contact-layout { grid-template-columns: 1fr; }
	.hf-contact-visual { display: none; }
}
@media (max-width: 560px) {
	.hf-contact-hero { padding: 26px 22px; }
	.hf-contact-fields { grid-template-columns: 1fr; gap: 0; }
	.hf-contact-form { padding: 20px; }
}
/* ---- Service SEO Guide ---- */
.hf-guide {
	margin: 36px 0 28px;
	padding: 30px;
	border-radius: 24px;
	border: 1px solid color-mix(in srgb, var(--hf-guide-solid) 16%, var(--hf-line));
	background:
		linear-gradient(135deg, rgba(255,255,255,0.96), rgba(247,244,255,0.88)),
		var(--hf-guide-grad);
	box-shadow: 0 18px 46px rgba(20,18,28,0.08);
}
.hf-guide-head { max-width: 780px; margin-bottom: 24px; }
.hf-guide-kicker {
	display: inline-flex;
	align-items: center;
	border-radius: 999px;
	background: #fff;
	border: 1px solid color-mix(in srgb, var(--hf-guide-solid) 18%, var(--hf-line));
	color: color-mix(in srgb, var(--hf-guide-solid) 76%, var(--hf-ink));
	font-size: 12px;
	font-weight: 850;
	text-transform: uppercase;
	letter-spacing: .06em;
	padding: 8px 11px;
}
.hf-guide-head h2 { font-size: clamp(28px, 3.2vw, 42px); margin: 14px 0 10px; }
.hf-guide-head p,
.hf-guide-panel p {
	color: var(--hf-soft);
	font-size: 16px;
	line-height: 1.78;
	margin: 0;
}
.hf-guide-layout {
	display: grid;
	grid-template-columns: 230px minmax(0, 1fr);
	gap: 22px;
	align-items: start;
}
.hf-guide-nav {
	position: sticky;
	top: 96px;
	display: grid;
	gap: 9px;
	padding: 12px;
	background: rgba(255,255,255,0.72);
	border: 1px solid rgba(255,255,255,0.78);
	border-radius: 18px;
	box-shadow: 0 12px 28px rgba(20,18,28,0.06);
}
.hf-guide-nav a {
	display: block;
	border-radius: 12px;
	padding: 10px 11px;
	background: #fff;
	border: 1px solid color-mix(in srgb, var(--hf-guide-solid) 12%, var(--hf-line));
	color: var(--hf-soft);
	font-size: 13px;
	font-weight: 750;
	line-height: 1.35;
}
.hf-guide-nav a:hover { color: var(--hf-ink); border-color: color-mix(in srgb, var(--hf-guide-solid) 42%, var(--hf-line)); transform: translateX(2px); }
.hf-guide-main { display: grid; gap: 16px; }
.hf-guide-visual {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 520px) 190px;
	gap: 16px;
	align-items: stretch;
	max-width: 730px;
}
.hf-guide-image {
	overflow: hidden;
	border-radius: 20px;
	border: 1px solid rgba(255,255,255,0.82);
	background: #fff;
	box-shadow: 0 14px 34px rgba(20,18,28,0.08);
}
.hf-guide-image img {
	display: block;
	width: 100%;
	height: auto;
	max-height: 420px;
	object-fit: contain;
	object-position: center;
}
.hf-guide-metric {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 8px;
	min-height: 210px;
	padding: 18px;
	border-radius: 20px;
	color: #fff;
	background: var(--hf-guide-grad);
	box-shadow: 0 14px 30px color-mix(in srgb, var(--hf-guide-solid) 20%, transparent);
}
.hf-guide-metric span {
	width: 48px;
	height: 48px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 15px;
	background: rgba(255,255,255,0.18);
}
.hf-guide-metric svg { width: 26px; height: 26px; }
.hf-guide-metric strong { font-size: 21px; line-height: 1.18; }
.hf-guide-metric em { font-style: normal; opacity: .86; font-size: 13px; }
.hf-guide-cards {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
}
.hf-guide-card,
.hf-guide-panel,
.hf-guide-links {
	background: rgba(255,255,255,0.92);
	border: 1px solid rgba(255,255,255,0.84);
	border-radius: 18px;
	box-shadow: 0 10px 26px rgba(20,18,28,0.055);
}
.hf-guide-card { padding: 17px; }
.hf-guide-card strong { display: block; color: var(--hf-ink); font-size: 15px; margin-bottom: 7px; }
.hf-guide-card span { color: var(--hf-muted); font-size: 13px; line-height: 1.58; }
.hf-guide-panel {
	scroll-margin-top: 110px;
	padding: 24px;
}
.hf-guide-panel h3 { font-size: 22px; margin: 0 0 10px; }
.hf-guide-links { padding: 20px; }
.hf-guide-links > strong { display: block; color: var(--hf-ink); margin-bottom: 12px; }
.hf-guide-links > div { display: flex; flex-wrap: wrap; gap: 9px; }
.hf-guide-links a {
	display: inline-flex;
	border-radius: 999px;
	padding: 9px 12px;
	background: #fff;
	border: 1px solid color-mix(in srgb, var(--hf-guide-solid) 18%, var(--hf-line));
	color: color-mix(in srgb, var(--hf-guide-solid) 72%, var(--hf-ink));
	font-size: 13px;
	font-weight: 750;
}
.hf-guide-links a:hover { border-color: color-mix(in srgb, var(--hf-guide-solid) 46%, var(--hf-line)); color: var(--hf-ink); }
.hf-guide-faq { margin-top: 22px; }
@media (max-width: 900px) {
	.hf-guide { padding: 24px 18px; }
	.hf-guide-layout { grid-template-columns: 1fr; }
	.hf-guide-nav {
		position: static;
		display: flex;
		overflow-x: auto;
		scrollbar-width: none;
	}
	.hf-guide-nav a { flex: 0 0 auto; max-width: 230px; }
	.hf-guide-visual { grid-template-columns: 1fr; }
	.hf-guide-metric { min-height: 150px; }
	.hf-guide-visual { max-width: 620px; margin: 0 auto; }
}
@media (max-width: 620px) {
	.hf-guide-head h2 { font-size: 28px; }
	.hf-guide-cards { grid-template-columns: 1fr; }
	.hf-guide-visual { max-width: 420px; }
	.hf-guide-image img { max-height: none; }
	.hf-guide-panel { padding: 20px; }
}
/* ---- Produktseiten Feinschliff ---- */
.hf-product-trust {
	background:
		linear-gradient(135deg, rgba(255,255,255,0.98), rgba(246,242,255,0.84)),
		var(--hf-prod-grad);
	border: 1px solid color-mix(in srgb, var(--hf-prod-solid) 14%, var(--hf-line));
	box-shadow: 0 12px 30px rgba(20,18,28,0.055);
}
.hf-product-trust b {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 25px;
	height: 25px;
	margin-right: 7px;
	border-radius: 999px;
	background: var(--hf-accent-soft);
	color: var(--hf-accent);
	font-size: 11px;
}
.hf-product-next {
	display: grid;
	grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
	gap: 22px;
	align-items: center;
	background:
		linear-gradient(135deg, rgba(255,255,255,0.96), rgba(247,244,255,0.88)),
		var(--hf-prod-grad);
	border-color: color-mix(in srgb, var(--hf-prod-solid) 16%, var(--hf-line));
}
.hf-product-next h2 { text-align: left; margin: 12px 0 10px; }
.hf-next-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.hf-next-card {
	display: grid;
	gap: 8px;
	min-height: 150px;
	padding: 17px;
	border-radius: 18px;
	background: rgba(255,255,255,0.94);
	border: 1px solid rgba(255,255,255,0.86);
	color: inherit;
	box-shadow: 0 10px 26px rgba(20,18,28,0.055);
}
.hf-next-card:hover { color: inherit; transform: translateY(-2px); border-color: color-mix(in srgb, var(--hf-prod-solid) 34%, var(--hf-line)); }
.hf-next-card span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 13px;
	color: #fff;
	background: var(--hf-prod-grad);
}
.hf-next-card svg { width: 22px; height: 22px; }
.hf-next-card strong { color: var(--hf-ink); font-size: 15px; line-height: 1.35; }
.hf-next-card em { color: color-mix(in srgb, var(--hf-prod-solid) 72%, var(--hf-ink)); font-style: normal; font-size: 13px; font-weight: 800; }
.hf-product-return {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	background:
		linear-gradient(135deg, rgba(255,255,255,0.98), rgba(248,245,255,0.96)),
		var(--hf-prod-grad);
	color: var(--hf-ink);
	border: 1px solid color-mix(in srgb, var(--hf-prod-solid) 16%, var(--hf-line));
	box-shadow: 0 12px 28px rgba(20,18,28,0.055);
}
.hf-product-return h2 { color: var(--hf-ink); text-align: left; margin: 0 0 6px; }
.hf-product-return p { color: var(--hf-muted); margin: 0; }
.hf-product-return .hf-btn { flex: none; }
.hf-tips-vis svg polyline { stroke-width: 3; opacity: .62; }
.hf-tips-vis svg circle { fill: color-mix(in srgb, var(--hf-accent) 56%, #ffffff); opacity: .78; }
@media (max-width: 860px) {
	.hf-product-next { grid-template-columns: 1fr; }
	.hf-next-grid { grid-template-columns: 1fr; }
	.hf-next-card { min-height: auto; }
	.hf-product-return { align-items: flex-start; flex-direction: column; }
}
/* ---- Service Guide CTA ---- */
.hf-guide-return {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	padding: 18px 20px;
	border-radius: 18px;
	background: var(--hf-ink);
	color: #fff;
}
.hf-guide-return span { color: rgba(255,255,255,0.62); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.hf-guide-return strong { color: #fff; margin-right: auto; }
.hf-guide-return .hf-btn { flex: none; }
@media (max-width: 620px) {
	.hf-guide-return { align-items: flex-start; flex-direction: column; }
}
/* ---- Warenkorb Feinschliff ---- */
.woocommerce-cart .hf-main > .hf-container,
.woocommerce-cart .entry-content {
	max-width: 1180px;
	margin-left: auto;
	margin-right: auto;
}
.woocommerce-cart .entry-title,
.woocommerce-cart h1 {
	font-size: clamp(36px, 5vw, 54px);
	line-height: 1.06;
	letter-spacing: 0;
	margin-bottom: 30px;
}
.hf-cart-modern {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 390px;
	gap: 22px;
	align-items: start;
	margin-top: 20px;
}
.hf-cart-items {
	display: grid;
	gap: 14px;
}
.hf-cart-item {
	position: relative;
	display: grid;
	grid-template-columns: 46px minmax(0, 1fr) auto;
	gap: 12px;
	align-items: start;
	padding: 20px;
	border-radius: 18px;
	border: 1px solid color-mix(in srgb, var(--hf-prod-solid) 12%, var(--hf-line));
	background: rgba(255,255,255,0.96);
	box-shadow: 0 10px 26px rgba(20,18,28,0.045);
}
.hf-cart-item-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 13px;
	color: #fff;
	background: var(--hf-prod-grad, var(--hf-accent-grad));
	box-shadow: 0 10px 20px color-mix(in srgb, var(--hf-prod-solid) 18%, transparent);
}
.hf-cart-item-icon svg { width: 22px; height: 22px; }
.hf-cart-item-main h2 {
	text-align: left;
	font-size: 24px;
	line-height: 1.18;
	margin: 0 0 12px;
}
.hf-cart-item-main h2 a { color: var(--hf-ink); }
.hf-cart-item-main h2 span { color: var(--hf-ink); font-weight: 800; }
.hf-cart-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 14px;
}
.hf-cart-chips span {
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	padding: 5px 10px;
	border-radius: 9px;
	background: color-mix(in srgb, var(--hf-prod-solid) 9%, #fff);
	color: color-mix(in srgb, var(--hf-prod-solid) 82%, var(--hf-ink));
	font-size: 13px;
	font-weight: 750;
}
.hf-cart-price {
	color: var(--hf-ink);
	font-size: 21px;
	font-weight: 900;
}
.hf-cart-item .wc-item-meta,
.hf-cart-item dl.variation {
	display: grid;
	gap: 4px 8px;
	grid-template-columns: auto 1fr;
	margin: 10px 0 0;
	color: var(--hf-muted);
	font-size: 13px;
}
.hf-cart-item .wc-item-meta p,
.hf-cart-item dl.variation p { margin: 0; }
.hf-cart-item-actions { padding-top: 2px; }
.hf-cart-remove {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	overflow: hidden;
	border-radius: 10px;
	border: 1px solid var(--hf-line);
	background: #fff;
	color: transparent !important;
	font-size: 0 !important;
}
.hf-cart-remove::before {
	content: "";
	width: 16px;
	height: 16px;
	background: currentColor;
	color: var(--hf-muted);
	-webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 3h6l1 2h4v2H4V5h4l1-2Zm1 7h2v8h-2v-8Zm4 0h2v8h-2v-8ZM7 8h10l-.7 13H7.7L7 8Z' fill='black'/%3E%3C/svg%3E") center/contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 3h6l1 2h4v2H4V5h4l1-2Zm1 7h2v8h-2v-8Zm4 0h2v8h-2v-8ZM7 8h10l-.7 13H7.7L7 8Z' fill='black'/%3E%3C/svg%3E") center/contain no-repeat;
}
.hf-cart-remove:hover {
	border-color: color-mix(in srgb, #ef4444 36%, var(--hf-line));
	background: #fff5f5;
}
.hf-cart-summary {
	position: sticky;
	top: 98px;
}
.hf-cart-totals {
	float: none !important;
	width: 100% !important;
	padding: 28px 24px;
	border-radius: 22px;
	border: 1px solid var(--hf-line);
	background: rgba(255,255,255,0.96);
	box-shadow: 0 16px 38px rgba(20,18,28,0.06);
}
.hf-cart-totals h2 {
	text-align: left;
	font-size: 28px;
	margin: 0 0 22px;
}
.hf-cart-summary-sub {
	display: flex;
	justify-content: center;
	padding: 10px 0 18px;
	border-bottom: 1px solid var(--hf-line);
	color: var(--hf-muted);
	font-weight: 800;
}
.hf-cart-coupon {
	padding: 18px 0;
	border-bottom: 1px solid var(--hf-line);
}
.hf-cart-coupon label {
	display: block;
	margin-bottom: 10px;
	color: var(--hf-muted);
	font-weight: 700;
}
.hf-cart-coupon > div {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 8px;
}
.hf-cart-coupon input {
	width: 100%;
	border: 1px solid var(--hf-line);
	border-radius: 10px;
	padding: 11px 12px;
	background: #fff;
}
.hf-cart-coupon button {
	border: 0;
	border-radius: 10px;
	padding: 0 13px;
	background: var(--hf-bg-3);
	color: var(--hf-ink);
	font-weight: 800;
}
.hf-cart-total-lines { padding: 14px 0 0; }
.hf-cart-total-line {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 8px 0;
	color: var(--hf-muted);
}
.hf-cart-total-line strong {
	color: var(--hf-ink);
	font-size: 18px;
	font-weight: 900;
}
.hf-cart-total-line.order-total {
	margin-top: 6px;
	padding-top: 16px;
	border-top: 1px solid var(--hf-line);
	color: var(--hf-ink);
}
.hf-cart-total-line.order-total span,
.hf-cart-total-line.order-total strong { font-size: 21px; }
.hf-cart-tax-note {
	margin: 18px 0 18px;
	color: var(--hf-muted);
	font-size: 13px;
	line-height: 1.45;
}
.hf-cart-totals .wc-proceed-to-checkout { padding: 0; }
.hf-cart-totals .checkout-button,
.woocommerce .hf-cart-totals a.checkout-button {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 58px;
	border-radius: 10px;
	background: var(--hf-accent-grad);
	color: #fff;
	font-size: 18px;
	font-weight: 900;
	box-shadow: 0 12px 28px rgba(124,87,255,0.22);
}
.hf-cart-totals .checkout-button::after { content: ""; }
.hf-cart-update { display: none !important; }
.woocommerce-cart .cart-collaterals { display: none; }
.woocommerce-cart .wc-block-cart-items__row .wc-block-cart-item__image,
.woocommerce-cart .wc-block-cart-items__row .wc-block-components-product-image,
.woocommerce-cart table.cart .product-thumbnail,
.woocommerce-cart table.shop_table .product-thumbnail {
	display: none !important;
}

.woocommerce-cart .wp-block-woocommerce-empty-cart-block > .wp-block-separator,
.woocommerce-cart .wp-block-woocommerce-empty-cart-block > .wp-block-heading:not(.wc-block-cart__empty-cart__title),
.woocommerce-cart .wp-block-woocommerce-empty-cart-block > .wp-block-product-new,
.woocommerce-cart .wp-block-woocommerce-empty-cart-block > .wp-block-woocommerce-product-new {
	display: none !important;
}
.woocommerce-cart .wc-block-cart-items__row .wc-block-cart-item__product {
	padding-left: 0 !important;
}
.woocommerce-cart .wc-block-components-product-metadata__description,
.woocommerce-cart .wc-block-cart-item__description,
.woocommerce-cart .wc-block-components-product-metadata > p {
	display: none !important;
}
.woocommerce-cart .wc-block-components-product-metadata,
.woocommerce-cart .wc-block-components-product-details {
	font-size: 13px;
	line-height: 1.45;
	color: var(--hf-muted);
}
.woocommerce-cart .wc-block-cart,
.woocommerce-cart .wc-block-components-sidebar-layout {
	max-width: 1140px;
	margin-left: auto;
	margin-right: auto;
}
.hf-cart-recos {
	max-width: 1140px;
	margin: 34px auto 0;
	padding: 26px;
	border-radius: 22px;
	border: 1px solid var(--hf-line);
	background: linear-gradient(135deg, rgba(255,255,255,0.98), rgba(246,242,255,0.86));
	box-shadow: 0 12px 34px rgba(20,18,28,0.06);
}
.hf-cart-recos-head { margin-bottom: 18px; }
.hf-cart-recos-head h2 { text-align: left; margin: 12px 0 8px; }
.hf-cart-recos-head p { margin: 0; color: var(--hf-muted); }
.hf-cart-reco-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
}
.hf-cart-reco {
	display: grid;
	gap: 8px;
	min-height: 142px;
	padding: 16px;
	border-radius: 18px;
	background: #fff;
	border: 1px solid var(--hf-line);
	color: inherit;
	box-shadow: 0 8px 22px rgba(20,18,28,0.045);
}
.hf-cart-reco:hover {
	color: inherit;
	transform: translateY(-2px);
	border-color: color-mix(in srgb, var(--hf-prod-solid) 36%, var(--hf-line));
}
.hf-cart-reco span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 13px;
	color: #fff;
	background: var(--hf-prod-grad);
}
.hf-cart-reco svg { width: 21px; height: 21px; }
.hf-cart-reco strong { color: var(--hf-ink); font-size: 14px; line-height: 1.35; }
.hf-cart-reco em { color: color-mix(in srgb, var(--hf-prod-solid) 72%, var(--hf-ink)); font-style: normal; font-size: 13px; font-weight: 800; }
@media (max-width: 860px) {
	.hf-cart-modern { grid-template-columns: 1fr; }
	.hf-cart-summary { position: static; }
	.hf-cart-reco-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 520px) {
	.woocommerce-cart .entry-title,
	.woocommerce-cart h1 { font-size: 34px; }
	.hf-cart-item { grid-template-columns: 42px minmax(0, 1fr); padding: 16px; }
	.hf-cart-item-actions { position: absolute; top: 14px; right: 14px; }
	.hf-cart-item-main h2 { font-size: 20px; padding-right: 40px; }
	.hf-cart-coupon > div { grid-template-columns: 1fr; }
	.hf-cart-recos { padding: 20px; }
	.hf-cart-reco-grid { grid-template-columns: 1fr; }
	.hf-cart-reco { min-height: auto; }
}

/* ---- Mobile Header: Warenkorb als stabiler Icon-Button ---- */
@media (max-width: 782px) {
	.hf-header-cta {
		gap: 8px;
		flex: 0 0 auto;
	}
	.hf-header .hf-cart:not(.hf-hide-mobile) {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 40px;
		height: 40px;
		flex: 0 0 40px;
		border: 1px solid var(--hf-line);
		border-radius: 10px;
		background: rgba(255,255,255,0.72);
		color: var(--hf-ink);
		line-height: 1;
	}
	.hf-header .hf-cart:not(.hf-hide-mobile) .hf-cart-ico {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		font-size: 18px;
		line-height: 1;
		transform: translateY(-1px);
	}
	.hf-header .hf-cart:not(.hf-hide-mobile) .hf-badge {
		position: absolute;
		top: -5px;
		right: -5px;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		min-width: 18px;
		height: 18px;
		margin-left: 0;
		padding: 0 5px;
		border: 2px solid rgba(255,255,255,0.92);
		font-size: 10px;
		font-weight: 800;
		line-height: 1;
	}
	.hf-burger {
		flex: 0 0 40px;
	}
}
@media (max-width: 360px) {
	.hf-container {
		padding-left: 18px;
		padding-right: 18px;
	}
	.hf-logo {
		gap: 9px;
		font-size: 20px;
	}
	.hf-logo .hf-mark {
		width: 29px;
		height: 29px;
	}
	.hf-header-cta {
		gap: 7px;
	}
}

/* ---- Plugin-Formulare: Fluent Forms + MailPoet ---- */
.hf-contact-form .fluentform,
.hf-mailpoet-wrap .mailpoet_form {
	font-family: var(--hf-font);
}
.hf-contact-form .ff-el-group {
	margin-bottom: 16px;
}
.hf-contact-form .ff-el-input--label label,
.hf-contact-form .ff-el-form-check-label,
.hf-mailpoet-wrap label {
	color: var(--hf-ink);
	font-size: 13px;
	font-weight: 750;
}
.hf-contact-form .ff-el-form-control,
.hf-contact-form select,
.hf-contact-form textarea,
.hf-mailpoet-wrap input[type="email"],
.hf-mailpoet-wrap input[type="text"] {
	width: 100%;
	min-height: 46px;
	background: var(--hf-bg-3) !important;
	border: 1px solid var(--hf-line) !important;
	border-radius: 10px !important;
	color: var(--hf-ink) !important;
	font-family: var(--hf-font) !important;
	font-size: 15px !important;
	padding: 12px 14px !important;
	box-shadow: none !important;
}
.hf-contact-form textarea.ff-el-form-control {
	min-height: 150px;
	resize: vertical;
}
.hf-contact-form .ff-el-form-control:focus,
.hf-mailpoet-wrap input[type="email"]:focus {
	outline: none !important;
	border-color: var(--hf-accent) !important;
	box-shadow: 0 0 0 4px var(--hf-accent-soft) !important;
}
.hf-contact-form .ff-btn-submit,
.hf-mailpoet-wrap input[type="submit"],
.hf-mailpoet-wrap button[type="submit"] {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	background: var(--hf-accent) !important;
	border: 0 !important;
	border-radius: 10px !important;
	color: #fff !important;
	font-family: var(--hf-font) !important;
	font-size: 15px !important;
	font-weight: 750 !important;
	padding: 12px 20px !important;
	cursor: pointer;
}
.hf-contact-form .ff-btn-submit:hover,
.hf-mailpoet-wrap input[type="submit"]:hover,
.hf-mailpoet-wrap button[type="submit"]:hover {
	background: #6b4bff !important;
}
.hf-contact-form .ff-message-success,
.hf-contact-form .ff-errors-in-stack,
.hf-mailpoet-wrap .mailpoet_validate_success,
.hf-mailpoet-wrap .mailpoet_validate_error {
	border-radius: 12px !important;
	font-size: 14px !important;
}
.hf-mailpoet-wrap .mailpoet_form {
	padding: 0 !important;
	background: transparent !important;
}
.hf-mailpoet-wrap .mailpoet_paragraph,
.hf-mailpoet-wrap p.mailpoet_form_paragraph {
	margin: 0 0 10px !important;
}
.hf-mailpoet-wrap .mailpoet_paragraph.last,
.hf-mailpoet-wrap p.mailpoet_form_paragraph.last {
	margin-bottom: 0 !important;
}
.hf-mailpoet-wrap .mailpoet_form_paragraph,
.hf-mailpoet-wrap .mailpoet_form_paragraph a {
	font-size: 12px;
	line-height: 1.5;
}

/* ================= MEIN KONTO / KUNDENBEREICH ================= */
.woocommerce-account .hf-main { padding: 40px 0 70px; }
.woocommerce-account .woocommerce {
	max-width: 1140px;
	margin: 0 auto;
	padding: 0 24px;
	display: grid;
	grid-template-columns: 250px 1fr;
	gap: 28px;
	align-items: start;
}
/* WooCommerce-Clearfix-Pseudoelemente würden im Grid eigene Zellen belegen */
.woocommerce-account .woocommerce::before,
.woocommerce-account .woocommerce::after { content: none; display: none; }

/* Login/Registrierung (nicht eingeloggt): einspaltig zentriert */
.woocommerce-account:not(.logged-in) .woocommerce {
	grid-template-columns: 1fr;
	max-width: 460px;
}

/* WooCommerce-Default-Floats/Breiten neutralisieren (sonst zerbricht das Grid) */
.woocommerce-account .woocommerce-MyAccount-navigation,
.woocommerce-account .woocommerce-MyAccount-content {
	float: none !important;
	width: auto !important;
	margin: 0 !important;
}

/* ---- Seitliche Navigation ---- */
.woocommerce-MyAccount-navigation {
	background: var(--hf-bg-2);
	border: 1px solid var(--hf-line);
	border-radius: 16px;
	padding: 10px;
	position: sticky;
	top: 90px;
}
.woocommerce-MyAccount-navigation ul { list-style: none; margin: 0; padding: 0; }
.woocommerce-MyAccount-navigation li { margin: 0; }
.woocommerce-MyAccount-navigation li a {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px 14px;
	border-radius: 11px;
	color: var(--hf-soft);
	font-size: 14.5px;
	font-weight: 600;
	transition: background .15s ease, color .15s ease;
}
.woocommerce-MyAccount-navigation li a:hover { background: var(--hf-bg-3); color: var(--hf-ink); }
.woocommerce-MyAccount-navigation li.is-active a {
	background: var(--hf-accent);
	color: #fff;
}
.woocommerce-MyAccount-navigation li.woocommerce-MyAccount-navigation-link--customer-logout a {
	color: var(--hf-muted);
	border-top: 1px solid var(--hf-line);
	border-radius: 0 0 11px 11px;
	margin-top: 6px;
}
.woocommerce-MyAccount-navigation li.woocommerce-MyAccount-navigation-link--customer-logout a:hover { color: #a3392d; background: transparent; }

/* ---- Inhaltsbereich ---- */
.woocommerce-MyAccount-content {
	background: var(--hf-bg-2);
	border: 1px solid var(--hf-line);
	border-radius: 16px;
	padding: 30px 32px;
	min-width: 0;
}
.woocommerce-MyAccount-content > p:first-child:empty { display: none; }

/* ---- Dashboard-Kopf ---- */
.smm-dash-head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 18px;
	flex-wrap: wrap;
	margin-bottom: 26px;
}
.smm-dash-hi { font-size: 13px; color: var(--hf-accent); font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }
.smm-dash-head h2 { margin: 6px 0 4px; font-size: 26px; }
.smm-dash-head p { margin: 0; color: var(--hf-muted); font-size: 14px; }
.smm-dash-cta {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	background: var(--hf-accent);
	color: #fff;
	font-weight: 600;
	font-size: 14px;
	padding: 11px 18px;
	border-radius: 11px;
	white-space: nowrap;
	transition: background .15s ease, transform .1s ease;
}
.smm-dash-cta:hover { background: #6b4bff; color: #fff; transform: translateY(-1px); }

/* ---- Statistik-Karten ---- */
.smm-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 32px; }
.smm-stat {
	background: var(--hf-bg-3);
	border: 1px solid var(--hf-line);
	border-radius: 14px;
	padding: 18px 20px;
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.smm-stat-num { font-size: 28px; font-weight: 800; color: var(--hf-ink); line-height: 1; }
.smm-stat-lbl { font-size: 12.5px; color: var(--hf-muted); }

.smm-dash-sub { font-size: 16px; margin: 0 0 14px; color: var(--hf-ink); }

/* ---- Bestellpositions-Karten ---- */
.smm-campaigns { display: flex; flex-direction: column; gap: 14px; }
.smm-camp {
	border: 1px solid var(--hf-line);
	border-radius: 14px;
	padding: 18px 20px;
	background: var(--hf-bg-2);
	transition: border-color .15s ease, box-shadow .15s ease;
}
.smm-camp:hover { border-color: var(--hf-line-2); box-shadow: var(--hf-shadow); }
.smm-camp-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 10px; }
.smm-camp-title { font-weight: 700; color: var(--hf-ink); font-size: 16px; }
.smm-camp-meta { display: flex; flex-wrap: wrap; gap: 6px 16px; font-size: 13px; color: var(--hf-muted); margin-bottom: 14px; }
.smm-camp-meta b { color: var(--hf-ink); }

/* Fortschrittsbalken */
.smm-camp-bar { height: 8px; border-radius: 20px; background: var(--hf-bg-3); overflow: hidden; }
.smm-camp-fill { display: block; height: 100%; border-radius: 20px; background: var(--hf-accent); transition: width .6s ease; }
.smm-fill-completed { background: var(--hf-success); }
.smm-fill-canceled { background: #a3392d; }
.smm-camp-prog { font-size: 12px; color: var(--hf-muted); margin-top: 6px; }

/* Status-Badges */
.smm-badge { font-size: 12px; font-weight: 700; padding: 4px 11px; border-radius: 20px; white-space: nowrap; }
.smm-badge-completed { background: rgba(31,175,106,0.12); color: #1faf6a; }
.smm-badge-progress  { background: var(--hf-accent-soft); color: #5a45c2; }
.smm-badge-pending   { background: rgba(176,137,0,0.12); color: #b08900; }
.smm-badge-partial   { background: rgba(176,137,0,0.12); color: #b08900; }
.smm-badge-canceled  { background: rgba(163,57,45,0.12); color: #a3392d; }

/* Nachfüllen */
.smm-camp-actions { margin-top: 14px; }
.smm-refill-btn {
	background: transparent;
	color: var(--hf-accent);
	border: 1px solid var(--hf-accent);
	border-radius: 9px;
	padding: 9px 16px;
	font-weight: 600;
	font-size: 13px;
	cursor: pointer;
	transition: background .15s ease, color .15s ease;
}
.smm-refill-btn:hover { background: var(--hf-accent); color: #fff; }
.smm-refill-done { font-size: 13px; font-weight: 600; color: var(--hf-success); }

/* Leerzustand */
.smm-empty { text-align: center; padding: 40px 20px; }
.smm-empty-ico { font-size: 40px; margin-bottom: 10px; }
.smm-empty strong { display: block; font-size: 18px; color: var(--hf-ink); margin-bottom: 6px; }
.smm-empty p { color: var(--hf-muted); margin: 0 0 18px; }

/* ---- WooCommerce Tabellen (Bestellungen, Adressen) im Stil ---- */
.woocommerce-account .woocommerce-orders-table,
.woocommerce-account table.shop_table {
	border: 1px solid var(--hf-line);
	border-radius: 14px;
	border-collapse: separate;
	border-spacing: 0;
	overflow: hidden;
	background: var(--hf-bg-2);
}
.woocommerce-account table.shop_table th { background: var(--hf-bg-3); color: var(--hf-muted); font-size: 12px; text-transform: uppercase; letter-spacing: .04em; padding: 14px 16px; }
.woocommerce-account table.shop_table td { padding: 16px; border-top: 1px solid var(--hf-line); color: var(--hf-soft); }
.woocommerce-account .woocommerce-orders-table__cell-order-actions a.button,
.woocommerce-account .woocommerce-MyAccount-content .button {
	background: var(--hf-accent); color: #fff; border-radius: 9px; padding: 9px 16px; font-weight: 600; font-size: 13px; border: 0;
}
.woocommerce-account .woocommerce-MyAccount-content .button:hover { background: #6b4bff; }
.woocommerce-account h2, .woocommerce-account h3 { color: var(--hf-ink); }
.woocommerce-account .woocommerce-Address { background: var(--hf-bg-3); border: 1px solid var(--hf-line); border-radius: 14px; padding: 20px; }
.woocommerce-account .woocommerce-MyAccount-content form .button[type="submit"] { margin-top: 6px; }

/* Kontaktseite: Datenschutz-Hinweis unter dem Formular */
.hf-contact-privacy { font-size: 12.5px; color: var(--hf-muted); margin: 14px 2px 0; line-height: 1.6; }
.hf-contact-privacy a { color: var(--hf-accent); text-decoration: underline; }

/* ---- Kontaktseite: Login-/Ticket-Teaser ---- */
.hf-contact-member {
	display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
	background: linear-gradient(145deg, var(--hf-accent-soft) 0%, rgba(124,92,255,0.04) 100%);
	border: 1px solid rgba(124,92,255,0.22);
	border-radius: 16px; padding: 22px 26px; margin: 0 0 30px;
}
.hf-contact-member-in { background: var(--hf-bg-2); }
.hf-contact-member-txt strong { display: block; font-size: 17px; color: var(--hf-ink); margin-bottom: 4px; }
.hf-contact-member-txt p { margin: 0; color: var(--hf-muted); font-size: 14px; max-width: 560px; }
.hf-contact-member-cta { display: flex; gap: 10px; flex-wrap: wrap; flex-shrink: 0; }
@media (max-width: 600px) {
	.hf-contact-member-cta { width: 100%; }
	.hf-contact-member-cta .hf-btn { flex: 1; justify-content: center; }
}

/* ---- Vertrauens-Zeile Warenkorb/Kasse ---- */
.hf-checkout-trust {
	display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 24px;
	background: var(--hf-bg-3); border: 1px solid var(--hf-line); border-radius: 12px;
	padding: 14px 18px; margin: 0 0 22px;
}
.hf-checkout-trust span { display: inline-flex; align-items: center; gap: 7px; font-size: 13.5px; font-weight: 600; color: var(--hf-soft); }
.hf-trust-ico { font-size: 15px; line-height: 1; }
@media (max-width: 520px) {
	.hf-checkout-trust { gap: 8px 16px; padding: 12px 14px; }
	.hf-checkout-trust span { font-size: 12.5px; }
}

/* ---- Warenkorb-Block: Artikel-Meta als Chips ---- */
.wc-block-components-product-details {
	display: flex; flex-wrap: wrap; gap: 6px; margin: 10px 0 0; padding: 0; list-style: none;
}
.wc-block-components-product-details > span,
.wc-block-components-product-details > li {
	display: inline-flex; align-items: baseline; gap: 5px;
	background: var(--hf-bg-3); border: 1px solid var(--hf-line); border-radius: 8px;
	padding: 4px 10px; font-size: 12px; line-height: 1.45;
}
.wc-block-components-product-details__name { color: var(--hf-muted); font-weight: 500; }
.wc-block-components-product-details__value { color: var(--hf-ink); font-weight: 700; }
/* WooCommerce-Trennzeichen " / " ausblenden – wir trennen über die Chips */
.wc-block-components-product-details [aria-hidden="true"] { display: none; }

/* Lange Produkt-Kurzbeschreibung in Warenkorb/Kasse ausblenden (Meta-Chips bleiben sichtbar) */
.wc-block-components-product-metadata__description { display: none; }

/* Kassen-Übersicht entschlacken: doppelter Einzelpreis raus (Menge ist immer 1, Gesamtpreis rechts genügt) */
.wc-block-components-order-summary-item__individual-prices,
.wc-block-components-order-summary-item__individual-price { display: none; }
/* Nichtssagende „1"-Mengen-Badge auf dem Bild ausblenden (echte Menge steht im „Menge:"-Chip) */
.wc-block-components-order-summary-item__quantity { display: none !important; }

/* ---- Zahlungs-Badges unter „Weiter zur Kasse" ---- */
.hf-cart-pay { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--hf-line); text-align: center; }
.hf-cart-pay-note { font-size: 12.5px; color: var(--hf-muted); margin: 0 0 12px; }
.hf-cart-pay .hf-pay { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin: 0; }

/* ---- Hilfe & Support ---- */
.smm-support-head h2 { margin: 0 0 6px; font-size: 24px; text-align: left; }
.smm-support-head p { color: var(--hf-muted); font-size: 14px; margin: 0 0 24px; text-align: left; }
.smm-support-grid { display: grid; grid-template-columns: 1fr 280px; gap: 22px; align-items: start; }
.smm-support-label { display: block; font-size: 13px; font-weight: 600; color: var(--hf-ink); margin: 0 0 6px; }
.smm-support-form .smm-support-label + .smm-support-input { margin-bottom: 16px; }
.smm-support-input {
	width: 100%; padding: 11px 13px; background: var(--hf-bg-3); border: 1px solid var(--hf-line);
	border-radius: 10px; color: var(--hf-ink); font-size: 14px; font-family: inherit;
}
.smm-support-input:focus { outline: none; border-color: var(--hf-accent); }
.smm-support-textarea { resize: vertical; min-height: 130px; line-height: 1.6; }
.smm-support-btn { margin-top: 18px; border: 0; cursor: pointer; }
.smm-support-aside { display: flex; flex-direction: column; gap: 14px; }
.smm-support-card { background: var(--hf-bg-3); border: 1px solid var(--hf-line); border-radius: 14px; padding: 18px; }
.smm-support-card strong { display: block; color: var(--hf-ink); font-size: 14px; margin-bottom: 6px; }
.smm-support-card p { color: var(--hf-muted); font-size: 13px; margin: 0 0 12px; line-height: 1.6; }
.smm-support-faq, .smm-support-mail { color: var(--hf-accent); font-weight: 600; font-size: 13.5px; word-break: break-word; }
@media (max-width: 760px) {
	.smm-support-grid { grid-template-columns: 1fr; }
}

/* ---- Konto-Formular (Kontoeinstellungen inkl. Rechnungsadresse) ---- */
.woocommerce-account .woocommerce-EditAccountForm .form-row,
.woocommerce-account .smm-address-fieldset .form-row { margin: 0 0 16px; }
.woocommerce-account .woocommerce-EditAccountForm label,
.woocommerce-account .smm-address-fieldset label {
	display: block; font-size: 13px; font-weight: 600; color: var(--hf-ink); margin-bottom: 6px;
}
.woocommerce-account .woocommerce-MyAccount-content input.input-text,
.woocommerce-account .woocommerce-MyAccount-content select,
.woocommerce-account .woocommerce-MyAccount-content .select2-selection {
	width: 100%; padding: 11px 13px; background: var(--hf-bg-3); border: 1px solid var(--hf-line);
	border-radius: 10px; color: var(--hf-ink); font-size: 14px; font-family: inherit;
}
.woocommerce-account .woocommerce-MyAccount-content input.input-text:focus,
.woocommerce-account .woocommerce-MyAccount-content select:focus { outline: none; border-color: var(--hf-accent); }
.woocommerce-account .woocommerce-EditAccountForm fieldset {
	border: 0; border-top: 1px solid var(--hf-line); margin: 26px 0 0; padding: 24px 0 0;
}
.woocommerce-account .woocommerce-EditAccountForm legend,
.woocommerce-account .smm-address-fieldset legend {
	font-size: 17px; font-weight: 700; color: var(--hf-ink); padding: 0; margin: 0 0 4px;
}
.smm-address-hint { font-size: 13px; color: var(--hf-muted); margin: 0 0 16px; }
.woocommerce-account .woocommerce-EditAccountForm .woocommerce-form-row--first,
.woocommerce-account .woocommerce-EditAccountForm .woocommerce-form-row--last { width: 48%; display: inline-block; }
.woocommerce-account .woocommerce-EditAccountForm .woocommerce-form-row--first { margin-right: 3%; }
.woocommerce-account .woocommerce-MyAccount-content em { color: var(--hf-muted); font-size: 12px; }

@media (max-width: 820px) {
	.woocommerce-account .woocommerce { grid-template-columns: 1fr; gap: 18px; }
	.woocommerce-MyAccount-navigation { position: static; }
	.woocommerce-MyAccount-navigation ul { display: flex; flex-wrap: wrap; gap: 4px; }
	.woocommerce-MyAccount-navigation li a { padding: 9px 13px; font-size: 13.5px; }
	.woocommerce-MyAccount-navigation li.woocommerce-MyAccount-navigation-link--customer-logout a { border-top: 0; }
	.woocommerce-MyAccount-content { padding: 22px 20px; }
	.smm-stats { grid-template-columns: 1fr; }
	.smm-dash-head h2 { font-size: 22px; }
}

/* ---- WooCommerce Block-Warenkorb: moderne Bestellprüfung ---- */
.woocommerce-cart .wp-block-woocommerce-cart.alignwide,
.woocommerce-cart .wc-block-cart,
.woocommerce-cart .wc-block-components-sidebar-layout {
	max-width: 1180px;
	margin-left: auto;
	margin-right: auto;
}
.woocommerce-cart .wp-block-woocommerce-cart { margin-top: 18px; }
.woocommerce-cart .wc-block-components-sidebar-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 390px;
	gap: 22px;
	align-items: start;
}
.woocommerce-cart .wc-block-components-main { width: auto; padding-right: 0; }
.woocommerce-cart .wc-block-components-sidebar {
	position: sticky;
	top: 98px;
	width: auto;
	padding: 28px 24px;
	border: 1px solid var(--hf-line);
	border-radius: 22px;
	background: rgba(255,255,255,0.97);
	box-shadow: 0 16px 38px rgba(20,18,28,0.06);
}
.woocommerce-cart .wc-block-cart-items {
	border: 0;
	border-collapse: separate;
	border-spacing: 0 14px;
}
.woocommerce-cart .wc-block-cart-items thead { display: none; }
.woocommerce-cart .wc-block-cart-items__row {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 14px;
	padding: 22px;
	margin-bottom: 14px;
	border: 1px solid var(--hf-line);
	border-radius: 18px;
	background: rgba(255,255,255,0.97);
	box-shadow: 0 10px 26px rgba(20,18,28,0.045);
}
.woocommerce-cart .wc-block-cart-items__row td {
	display: block;
	border: 0 !important;
	padding: 0 !important;
}
.woocommerce-cart .wc-block-cart-item__wrap { padding-left: 58px; }
.woocommerce-cart .wc-block-cart-item__wrap::before {
	content: "✓";
	position: absolute;
	left: 22px;
	top: 24px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 13px;
	background: var(--hf-accent-grad);
	color: #fff;
	font-size: 18px;
	font-weight: 900;
	box-shadow: 0 10px 20px rgba(124,87,255,0.18);
}
.woocommerce-cart .wc-block-components-product-name,
.woocommerce-cart .wc-block-cart-item__product .wc-block-components-product-name {
	color: var(--hf-ink);
	font-size: 24px;
	line-height: 1.18;
	font-weight: 900;
	text-decoration: none;
}
.woocommerce-cart .wc-block-components-product-metadata,
.woocommerce-cart .wc-block-components-product-details {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 12px;
	color: var(--hf-muted);
}
.woocommerce-cart .wc-block-components-product-details li {
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	margin: 0;
	padding: 5px 10px;
	border-radius: 9px;
	background: color-mix(in srgb, var(--hf-accent) 9%, #fff);
	color: color-mix(in srgb, var(--hf-accent) 78%, var(--hf-ink));
	font-size: 13px;
	font-weight: 750;
}
.woocommerce-cart .wc-block-components-product-metadata__description { display: none !important; }
.woocommerce-cart .wc-block-cart-item__prices,
.woocommerce-cart .wc-block-components-product-price,
.woocommerce-cart .wc-block-cart-item__total {
	color: var(--hf-ink);
	font-size: 21px;
	font-weight: 900;
}
.woocommerce-cart .wc-block-cart-item__quantity { margin-top: 14px; }
.woocommerce-cart .wc-block-cart-item__remove-link {
	color: var(--hf-muted);
	font-size: 12px;
	font-weight: 800;
	text-decoration: none;
}
.woocommerce-cart .wc-block-components-sidebar .wc-block-cart__totals-title,
.woocommerce-cart .wc-block-components-sidebar .wp-block-woocommerce-cart-order-summary-heading-block {
	display: block;
	margin: 0 0 20px;
	color: var(--hf-ink);
	font-size: 0;
	font-weight: 900;
	text-align: left;
}
.woocommerce-cart .wc-block-components-sidebar .wc-block-cart__totals-title::before,
.woocommerce-cart .wc-block-components-sidebar .wp-block-woocommerce-cart-order-summary-heading-block::before {
	content: "Zusammenfassung";
	font-size: 28px;
}
.woocommerce-cart .wc-block-components-sidebar .wc-block-components-totals-wrapper,
.woocommerce-cart .wc-block-components-sidebar .wp-block-woocommerce-cart-order-summary-block,
.woocommerce-cart .wc-block-components-sidebar .wc-block-components-totals-coupon,
.woocommerce-cart .wc-block-components-sidebar .wc-block-cart__submit-container {
	border-color: var(--hf-line);
}
.woocommerce-cart .wc-block-components-totals-item {
	padding: 8px 0;
	color: var(--hf-muted);
}
.woocommerce-cart .wc-block-components-totals-item__value,
.woocommerce-cart .wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
	color: var(--hf-ink);
	font-size: 18px;
	font-weight: 900;
}
.woocommerce-cart .wc-block-components-totals-footer-item {
	margin-top: 8px;
	padding-top: 16px;
	border-top: 1px solid var(--hf-line);
}
.woocommerce-cart .wc-block-components-totals-footer-item .wc-block-components-totals-item__label,
.woocommerce-cart .wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
	color: var(--hf-ink);
	font-size: 21px;
	font-weight: 900;
}
.woocommerce-cart .wc-block-components-totals-coupon-link,
.woocommerce-cart .wc-block-components-totals-coupon__button {
	color: var(--hf-ink);
	font-weight: 800;
}
.woocommerce-cart .wc-block-components-text-input input {
	border: 1px solid var(--hf-line);
	border-radius: 10px;
	background: #fff;
}
.woocommerce-cart .wc-block-cart__submit-button,
.woocommerce-cart .wc-block-components-button:not(.is-link) {
	min-height: 58px;
	border-radius: 10px;
	background: var(--hf-accent-grad);
	color: #fff;
	font-size: 18px;
	font-weight: 900;
	box-shadow: 0 12px 28px rgba(124,87,255,0.22);
}
.woocommerce-cart .wc-block-cart__submit-button:hover,
.woocommerce-cart .wc-block-components-button:not(.is-link):hover {
	color: #fff;
	filter: brightness(1.02);
}
.woocommerce-cart .wp-block-woocommerce-cart-express-payment-block,
.woocommerce-cart .wp-block-woocommerce-cart-accepted-payment-methods-block { display: none; }
.woocommerce-cart .wp-block-woocommerce-germanized-cart-summary-item,
.woocommerce-cart .wc-gzd-cart-info,
.woocommerce-cart .wc-gzd-small-business-info,
.woocommerce-cart .woocommerce-gzd-legal-checkbox-text {
	display: none !important;
}
.woocommerce-cart .wc-block-cart-items__row .wc-block-cart-item__image,
.woocommerce-cart .wc-block-cart-items__row .wc-block-components-product-image {
	position: absolute !important;
	left: 22px;
	top: 24px;
	z-index: 2;
	display: flex !important;
	align-items: center;
	justify-content: center;
	width: 42px !important;
	height: 42px !important;
	border-radius: 13px;
	background: linear-gradient(135deg,#7C5CFF 0%,#8B5CF6 54%,#B84CFF 100%) !important;
	box-shadow: 0 10px 20px rgba(124,87,255,0.18);
	overflow: hidden;
}
.woocommerce-cart .wc-block-cart-items__row .wc-block-cart-item__image img,
.woocommerce-cart .wc-block-cart-items__row .wc-block-components-product-image img {
	display: none !important;
}
.woocommerce-cart .wc-block-cart-items__row .wc-block-cart-item__image::before,
.woocommerce-cart .wc-block-cart-items__row .wc-block-components-product-image::before {
	content: "✓";
	color: #fff;
	font-size: 19px;
	font-weight: 900;
	line-height: 1;
}
.woocommerce-cart .wc-block-cart-items__row:has(a[href*="instagram"]) .wc-block-cart-item__image,
.woocommerce-cart .wc-block-cart-items__row:has(a[href*="instagram"]) .wc-block-components-product-image {
	background: linear-gradient(135deg,#FFB86B 0%,#F2337B 52%,#8B5CF6 100%) !important;
}
.woocommerce-cart .wc-block-cart-items__row:has(a[href*="instagram"]) .wc-block-cart-item__image::before,
.woocommerce-cart .wc-block-cart-items__row:has(a[href*="instagram"]) .wc-block-components-product-image::before { content: "◎"; }
.woocommerce-cart .wc-block-cart-items__row:has(a[href*="tiktok"]) .wc-block-cart-item__image,
.woocommerce-cart .wc-block-cart-items__row:has(a[href*="tiktok"]) .wc-block-components-product-image { background: linear-gradient(135deg,#25F4EE 0%,#111 54%,#FE2C55 100%) !important; }
.woocommerce-cart .wc-block-cart-items__row:has(a[href*="tiktok"]) .wc-block-cart-item__image::before,
.woocommerce-cart .wc-block-cart-items__row:has(a[href*="tiktok"]) .wc-block-components-product-image::before { content: "♪"; }
.woocommerce-cart .wc-block-cart-items__row:has(a[href*="youtube"]) .wc-block-cart-item__image,
.woocommerce-cart .wc-block-cart-items__row:has(a[href*="youtube"]) .wc-block-components-product-image { background: linear-gradient(135deg,#FF5147 0%,#FF0000 100%) !important; }
.woocommerce-cart .wc-block-cart-items__row:has(a[href*="youtube"]) .wc-block-cart-item__image::before,
.woocommerce-cart .wc-block-cart-items__row:has(a[href*="youtube"]) .wc-block-components-product-image::before { content: "▶"; font-size: 17px; }
.woocommerce-cart .wc-block-cart-items__row:has(a[href*="twitch"]) .wc-block-cart-item__image,
.woocommerce-cart .wc-block-cart-items__row:has(a[href*="twitch"]) .wc-block-components-product-image { background: linear-gradient(135deg,#9146FF 0%,#5f35d8 100%) !important; }
.woocommerce-cart .wc-block-cart-items__row:has(a[href*="twitch"]) .wc-block-cart-item__image::before,
.woocommerce-cart .wc-block-cart-items__row:has(a[href*="twitch"]) .wc-block-components-product-image::before { content: "▣"; }
.woocommerce-cart .wc-block-cart-items__row:has(a[href*="facebook"]) .wc-block-cart-item__image,
.woocommerce-cart .wc-block-cart-items__row:has(a[href*="facebook"]) .wc-block-components-product-image { background: linear-gradient(135deg,#1877F2 0%,#0a3f8a 100%) !important; }
.woocommerce-cart .wc-block-cart-items__row:has(a[href*="facebook"]) .wc-block-cart-item__image::before,
.woocommerce-cart .wc-block-cart-items__row:has(a[href*="facebook"]) .wc-block-components-product-image::before { content: "f"; font-family: Arial, sans-serif; font-size: 23px; }
.woocommerce-cart .wc-block-cart-items__row:has(a[href*="spotify"]) .wc-block-cart-item__image,
.woocommerce-cart .wc-block-cart-items__row:has(a[href*="spotify"]) .wc-block-components-product-image { background: linear-gradient(135deg,#1DB954 0%,#0c6b30 100%) !important; }
.woocommerce-cart .wc-block-cart-items__row:has(a[href*="spotify"]) .wc-block-cart-item__image::before,
.woocommerce-cart .wc-block-cart-items__row:has(a[href*="spotify"]) .wc-block-components-product-image::before { content: "♪"; }
.woocommerce-cart .wc-block-cart-item__wrap::before {
	display: none !important;
}
.woocommerce-cart .wc-block-cart__submit-container,
.woocommerce-cart .wc-block-cart__submit {
	background: transparent !important;
}
.woocommerce-cart .wc-block-cart__submit-button,
.woocommerce-cart .wc-block-cart__submit-button.components-button,
.woocommerce-cart .wc-block-components-button.wc-block-cart__submit-button,
.woocommerce-cart a.wc-block-cart__submit-button,
.woocommerce-cart .wc-block-cart__submit-button:not(.is-link) {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 100% !important;
	min-height: 58px !important;
	border: 0 !important;
	border-radius: 10px !important;
	background-color: #7C5CFF !important;
	background-image: linear-gradient(135deg,#7C5CFF 0%,#8B5CF6 54%,#B84CFF 100%) !important;
	color: #fff !important;
	box-shadow: 0 12px 28px rgba(124,87,255,0.22) !important;
	text-decoration: none !important;
	opacity: 1 !important;
}
.woocommerce-cart .wc-block-cart__submit-button *,
.woocommerce-cart .wc-block-components-button__text {
	color: #fff !important;
	font-size: 18px !important;
	font-weight: 900 !important;
	opacity: 1 !important;
	visibility: visible !important;
}
@media (max-width: 860px) {
	.woocommerce-cart .wc-block-components-sidebar-layout { grid-template-columns: 1fr; }
	.woocommerce-cart .wc-block-components-sidebar { position: static; }
}
	@media (max-width: 520px) {
		.woocommerce-cart .hf-main > .hf-container,
		.woocommerce-cart .entry-content {
			padding-left: 16px;
			padding-right: 16px;
		}
		.woocommerce-cart .entry-title,
		.woocommerce-cart h1 {
			font-size: 34px;
			line-height: 1.08;
			letter-spacing: 0;
		}
		.woocommerce-cart .wc-block-cart-items__row {
			grid-template-columns: 54px minmax(0, 1fr) !important;
			gap: 14px;
			padding: 18px 16px 18px;
			align-items: start;
		}
		.woocommerce-cart .wc-block-cart-items__row td {
			display: block;
		}
		.woocommerce-cart .wc-block-cart-items__row .wc-block-cart-item__image,
		.woocommerce-cart .wc-block-cart-items__row .wc-block-components-product-image {
			position: relative !important;
			left: auto;
			top: auto;
			grid-column: 1;
			grid-row: 1 / span 2;
			margin-top: 2px;
		}
		.woocommerce-cart .wc-block-cart-item__product {
			grid-column: 2 !important;
			grid-row: 1 !important;
			min-width: 0;
		}
		.woocommerce-cart .wc-block-cart-item__wrap {
			padding-left: 0;
		}
		.woocommerce-cart .wc-block-cart-item__wrap::before {
			left: 18px;
			top: 20px;
		}
		.woocommerce-cart .wc-block-components-product-name,
		.woocommerce-cart .wc-block-cart-item__product .wc-block-components-product-name {
			display: block;
			font-size: 18px;
			line-height: 1.22;
		}
		.woocommerce-cart .wc-block-cart-item__prices,
		.woocommerce-cart .wc-block-components-product-price {
			font-size: 18px;
			line-height: 1.2;
		}
		.woocommerce-cart .wc-block-cart-item__total {
			display: none !important;
		}
		.woocommerce-cart .wc-block-components-sale-badge {
			display: inline-flex;
			margin-left: 8px;
			vertical-align: middle;
			font-size: 11px;
			white-space: nowrap;
		}
		.woocommerce-cart .wc-block-components-product-metadata,
		.woocommerce-cart .wc-block-components-product-details {
			margin-top: 10px;
			gap: 6px;
			font-size: 12px;
		}
		.woocommerce-cart .wc-block-cart-item__quantity {
			margin-top: 12px;
		}
		.woocommerce-cart .wc-block-components-sidebar {
			padding: 22px 18px;
			border-radius: 18px;
		}
	}

.woocommerce-cart .wc-block-cart-items__row:has(a[href*="instagram"]) .wc-block-cart-item__image,
.woocommerce-cart .wc-block-cart-items__row:has(a[href*="instagram"]) .wc-block-components-product-image {
	background: linear-gradient(135deg,#FFB86B 0%,#F2337B 52%,#8B5CF6 100%) !important;
}
.woocommerce-cart .wc-block-cart-items__row:has(a[href*="instagram"]) .wc-block-cart-item__image::before,
.woocommerce-cart .wc-block-cart-items__row:has(a[href*="instagram"]) .wc-block-components-product-image::before { content: "◎" !important; }
.woocommerce-cart .wc-block-cart-items__row:has(a[href*="tiktok"]) .wc-block-cart-item__image,
.woocommerce-cart .wc-block-cart-items__row:has(a[href*="tiktok"]) .wc-block-components-product-image {
	background: linear-gradient(135deg,#25F4EE 0%,#111 54%,#FE2C55 100%) !important;
}
.woocommerce-cart .wc-block-cart-items__row:has(a[href*="tiktok"]) .wc-block-cart-item__image::before,
.woocommerce-cart .wc-block-cart-items__row:has(a[href*="tiktok"]) .wc-block-components-product-image::before { content: "♪" !important; }
.woocommerce-cart .wc-block-cart-items__row:has(a[href*="youtube"]) .wc-block-cart-item__image,
.woocommerce-cart .wc-block-cart-items__row:has(a[href*="youtube"]) .wc-block-components-product-image {
	background: linear-gradient(135deg,#FF5147 0%,#FF0000 100%) !important;
}
.woocommerce-cart .wc-block-cart-items__row:has(a[href*="youtube"]) .wc-block-cart-item__image::before,
.woocommerce-cart .wc-block-cart-items__row:has(a[href*="youtube"]) .wc-block-components-product-image::before { content: "▶" !important; font-size: 17px; }
.woocommerce-cart .wc-block-cart-items__row:has(a[href*="twitch"]) .wc-block-cart-item__image,
.woocommerce-cart .wc-block-cart-items__row:has(a[href*="twitch"]) .wc-block-components-product-image {
	background: linear-gradient(135deg,#9146FF 0%,#5f35d8 100%) !important;
}
.woocommerce-cart .wc-block-cart-items__row:has(a[href*="twitch"]) .wc-block-cart-item__image::before,
.woocommerce-cart .wc-block-cart-items__row:has(a[href*="twitch"]) .wc-block-components-product-image::before { content: "▣" !important; }
.woocommerce-cart .wc-block-cart-items__row:has(a[href*="facebook"]) .wc-block-cart-item__image,
.woocommerce-cart .wc-block-cart-items__row:has(a[href*="facebook"]) .wc-block-components-product-image {
	background: linear-gradient(135deg,#1877F2 0%,#0a3f8a 100%) !important;
}
.woocommerce-cart .wc-block-cart-items__row:has(a[href*="facebook"]) .wc-block-cart-item__image::before,
.woocommerce-cart .wc-block-cart-items__row:has(a[href*="facebook"]) .wc-block-components-product-image::before { content: "f" !important; font-family: Arial, sans-serif; font-size: 23px; }
.woocommerce-cart .wc-block-cart-items__row:has(a[href*="spotify"]) .wc-block-cart-item__image,
.woocommerce-cart .wc-block-cart-items__row:has(a[href*="spotify"]) .wc-block-components-product-image {
	background: linear-gradient(135deg,#1DB954 0%,#0c6b30 100%) !important;
}
.woocommerce-cart .wc-block-cart-items__row:has(a[href*="spotify"]) .wc-block-cart-item__image::before,
.woocommerce-cart .wc-block-cart-items__row:has(a[href*="spotify"]) .wc-block-components-product-image::before { content: "♪" !important; }

.woocommerce-checkout .wc-block-components-order-summary-item__image {
	position: relative;
	display: flex !important;
	align-items: center;
	justify-content: center;
	width: 42px !important;
	height: 42px !important;
	min-width: 42px !important;
	border-radius: 13px;
	background: linear-gradient(135deg,#7C5CFF 0%,#8B5CF6 54%,#B84CFF 100%) !important;
	box-shadow: 0 10px 20px rgba(124,87,255,0.18);
	overflow: visible;
}
.woocommerce-checkout .wc-block-components-order-summary-item__image img {
	display: none !important;
}
.woocommerce-checkout .wc-block-components-order-summary-item__image::before {
	content: "✓";
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	color: #fff;
	font-size: 19px;
	font-weight: 900;
	line-height: 1;
}
.woocommerce-checkout .wc-block-components-order-summary-item__quantity {
	top: -7px !important;
	right: -7px !important;
	z-index: 3;
	background: var(--hf-ink) !important;
	color: #fff !important;
	border: 2px solid #fff !important;
	box-shadow: 0 4px 10px rgba(20,18,28,0.18);
}
.woocommerce-checkout .wc-block-components-order-summary-item__quantity span {
	color: #fff !important;
	font-weight: 800;
}
.woocommerce-checkout .hf-checkout-instagram .wc-block-components-order-summary-item__image {
	background: linear-gradient(135deg,#FFB86B 0%,#F2337B 52%,#8B5CF6 100%) !important;
}
.woocommerce-checkout .hf-checkout-instagram .wc-block-components-order-summary-item__image::before { content: "◎"; }
.woocommerce-checkout .hf-checkout-tiktok .wc-block-components-order-summary-item__image {
	background: linear-gradient(135deg,#25F4EE 0%,#111 54%,#FE2C55 100%) !important;
}
.woocommerce-checkout .hf-checkout-tiktok .wc-block-components-order-summary-item__image::before { content: "♪"; }
.woocommerce-checkout .hf-checkout-youtube .wc-block-components-order-summary-item__image {
	background: linear-gradient(135deg,#FF5147 0%,#FF0000 100%) !important;
}
.woocommerce-checkout .hf-checkout-youtube .wc-block-components-order-summary-item__image::before { content: "▶"; font-size: 17px; }
.woocommerce-checkout .hf-checkout-twitch .wc-block-components-order-summary-item__image {
	background: linear-gradient(135deg,#9146FF 0%,#5f35d8 100%) !important;
}
.woocommerce-checkout .hf-checkout-twitch .wc-block-components-order-summary-item__image::before { content: "▣"; }
.woocommerce-checkout .hf-checkout-facebook .wc-block-components-order-summary-item__image {
	background: linear-gradient(135deg,#1877F2 0%,#0a3f8a 100%) !important;
}
.woocommerce-checkout .hf-checkout-facebook .wc-block-components-order-summary-item__image::before {
	content: "f";
	font-family: Arial, sans-serif;
	font-size: 23px;
}
.woocommerce-checkout .hf-checkout-spotify .wc-block-components-order-summary-item__image {
	background: linear-gradient(135deg,#1DB954 0%,#0c6b30 100%) !important;
}
.woocommerce-checkout .hf-checkout-spotify .wc-block-components-order-summary-item__image::before { content: "♪"; }

@media (max-width: 520px) {
	.woocommerce-checkout .hf-main > .hf-container,
	.woocommerce-checkout .entry-content {
		padding-left: 16px;
		padding-right: 16px;
	}
	.woocommerce-checkout .wp-block-woocommerce-checkout,
	.woocommerce-checkout .wc-block-checkout {
		max-width: 100%;
	}
	.woocommerce-checkout .wc-block-components-text-input input,
	.woocommerce-checkout .wc-block-components-address-form input,
	.woocommerce-checkout .wc-block-components-combobox .wc-block-components-combobox-control input,
	.woocommerce-checkout .wc-block-components-country-input input,
	.woocommerce-checkout .wc-block-components-select select {
		border-radius: 10px;
		min-height: 52px;
	}
	.woocommerce-checkout .wc-block-components-sidebar,
	.woocommerce-checkout .wc-block-checkout__sidebar {
		border-radius: 18px;
	}
}
