/**
 * Techboys Affiliate – Frontend (Glassmorphism / Glow, Foxiz-konform)
 *
 * Baut auf der techboys-DNA auf: Dark Mode ist Default ([data-theme='dark']),
 * Light über dessen Abwesenheit. Glas (blur+saturate), Glow-Shadows, Pill-
 * Buttons mit Shimmer, 'Reddit Sans'. Akzent ist über CSS-Variablen themebar
 * (Default = Site-Cyan/Indigo; .tba-garden = RockMow-Cluster Grün/Blau).
 * Alles unter .tba-container genamespaced → keine Kollision mit Foxiz.
 */

/* ── Tokens: Light = Basis ───────────────────────────────────────────── */
.tba-container {
	--tba-accent:        var(--tba-accent-user, #4338ca);
	--tba-accent-2:      var(--tba-accent2-user, #6d5ae6);
	--tba-on-accent:     #ffffff;

	--tba-card-bg:       rgba(255, 255, 255, 0.55);
	--tba-card-brd:      rgba(67, 56, 202, 0.14);
	--tba-card-top:      rgba(255, 255, 255, 0.65);
	--tba-card-shadow:   0 8px 32px rgba(31, 40, 51, 0.12);

	--tba-ink:           #1e1e3c;
	--tba-ink-soft:      rgba(30, 30, 60, 0.70);
	--tba-pros:          #1a8b3a;
	--tba-cons:          #d4324b;

	--tba-blur:          blur(15px) saturate(180%);
	--tba-radius:        16px;
	--tba-radius-sm:     12px;
	--tba-font:          var(--body-family, 'Reddit Sans', system-ui, -apple-system, 'Segoe UI', sans-serif);

	position: relative;
	box-sizing: border-box;
	margin: 32px auto;
	max-width: 100%;
	font-family: var(--tba-font);
	color: var(--tba-ink);
}

/* Breiten-Varianten (Block-Attribut "width"). Voll = 100% (Standard, wie
   Content Egg). Mittel/Schmal kappen und zentrieren über margin:auto. */
.tba-container--wide   { max-width: 100%; }
.tba-container--medium { max-width: 960px; }
.tba-container--narrow { max-width: 720px; }
.tba-container *,
.tba-container *::before,
.tba-container *::after { box-sizing: border-box; }

/* ── Tokens: Dark = Default auf techboys.de ──────────────────────────── */
[data-theme='dark'] .tba-container {
	--tba-accent:        var(--tba-accent-user, #66fcf1);
	--tba-accent-2:      var(--tba-accent2-user, #2dd4bf);
	--tba-on-accent:     #0b0e11;

	--tba-card-bg:       rgba(22, 28, 42, 0.72);
	--tba-card-brd:      rgba(102, 252, 241, 0.18);
	--tba-card-top:      rgba(255, 255, 255, 0.06);
	--tba-card-shadow:   0 10px 34px rgba(0, 0, 0, 0.40);

	--tba-ink:           #ffffff;
	--tba-ink-soft:      rgba(255, 255, 255, 0.80);
	--tba-pros:          #35b145;
	--tba-cons:          #ff3d5f;
}

/* ── Cluster-Variante: Garten / Mähroboter (RockMow-DNA) ─────────────── */
.tba-container.tba-garden            { --tba-accent-user: #1a6b3a; --tba-accent2-user: #1a4d8f; --tba-on-accent: #fff; }
[data-theme='dark'] .tba-container.tba-garden { --tba-accent-user: #86efac; --tba-accent2-user: #3b7dd8; --tba-on-accent: #0b1a10; }

/* ── Glas-Karte ──────────────────────────────────────────────────────── */
.tba-box {
	position: relative;
	padding: 24px;
	background: var(--tba-card-bg);
	-webkit-backdrop-filter: var(--tba-blur);
	backdrop-filter: var(--tba-blur);
	border: 1px solid var(--tba-card-brd);
	border-top: 1px solid var(--tba-card-top);
	border-radius: var(--tba-radius);
	box-shadow: var(--tba-card-shadow);
	color: var(--tba-ink);
	transition: box-shadow .3s ease, transform .3s ease;
}

/* Layout: horizontal (Standard) — Bild links, Inhalt rechts */
.tba-box--horizontal {
	display: grid;
	grid-template-columns: minmax(160px, 220px) minmax(0, 1fr);
	grid-template-areas:
		"image content"
		"image buttons"
		"foot  foot";
	gap: 6px 26px;
	align-items: start;
}
/* Inhalt darf nie über seine Spalte hinauslaufen → Titel bricht um. */
.tba-box--horizontal .tba-box-2 { min-width: 0; }
.tba-box--horizontal .tba-title { overflow-wrap: anywhere; }

/* Layout: vertical — Bild oben, Inhalt zentriert darunter */
.tba-box--vertical { text-align: center; }
.tba-box--vertical .tba-box-1 { margin-bottom: 14px; }
.tba-box--vertical .tba-fields,
.tba-box--vertical .tba-specs { text-align: left; display: inline-block; }
.tba-box--vertical .tba-button--buy { margin: 0 auto; }

/* Layout: list — kompakte Zeile (Bild · Titel/Preis · Buttons) */
.tba-box--list {
	display: grid;
	grid-template-columns: 72px minmax(0, 1fr) auto;
	align-items: center;
	gap: 16px;
	padding: 12px 16px;
}
.tba-box--list .tba-box-1,
.tba-box--list .tba-box-2,
.tba-box--list .tba-box-3 { grid-area: auto; }
.tba-box--list .tba-box-4 { grid-area: auto; grid-column: 1 / -1; margin-top: 2px; }
.tba-box--list .tba-image img { max-height: 60px; }
.tba-box--list .tba-title { font-size: 15px; line-height: 1.35; margin: 0; }
.tba-box--list .tba-subtitle,
.tba-box--list .tba-description,
.tba-box--list .tba-desc-more,
.tba-box--list .tba-fields,
.tba-box--list .tba-pcl,
.tba-box--list .tba-pcl-toggle,
.tba-box--list .tba-specs,
.tba-box--list .tba-coupons,
.tba-box--list .tba-price-history,
.tba-box--list .tba-badge { display: none; }
/* Buttons gestapelt + schmal, damit der Titel die Breite behält. */
.tba-box--list .tba-box-3 { display: flex; flex-direction: column; gap: 6px; align-items: stretch; }
.tba-box--list .tba-box-3 .tba-button { width: 100%; min-width: 150px; max-width: 190px; padding: 8px 14px; font-size: 13px; white-space: nowrap; }
/* Transparenz-Hinweis dezenter in der kompakten Zeile. */
.tba-box--list .tba-box-4 .tba-disclosure { font-size: 11px; line-height: 1.4; }
@media ( max-width: 560px ) {
	.tba-box--list { grid-template-columns: 56px minmax(0, 1fr); }
	.tba-box--list .tba-box-3 { grid-column: 1 / -1; flex-direction: row; flex-wrap: wrap; }
	.tba-box--list .tba-box-3 .tba-button { min-width: 0; flex: 1; }
	.tba-box--list .tba-offers-compact { flex: 1; min-width: 0; }
}

/* Compact-Angebote (Content-Egg-Stil): Bestpreis-Button + "+N weitere" on hover. */
.tba-offers-compact { display: flex; flex-direction: column; gap: 4px; align-items: stretch; }
.tba-offers-compact > .tba-button { width: 100%; min-width: 150px; max-width: 190px; padding: 8px 14px; font-size: 13px; white-space: nowrap; }
.tba-cmp-more { position: relative; }
.tba-cmp-trigger {
	display: inline-block; width: 100%; max-width: 190px;
	background: none; border: 0; padding: 2px 4px;
	font-size: 11px; line-height: 1.4; color: var( --tba-accent, #4f46e5 );
	text-align: center; cursor: pointer;
}
.tba-cmp-trigger:hover { text-decoration: underline; }
.tba-cmp-panel {
	position: absolute; z-index: 30; left: 0; top: calc( 100% + 4px );
	min-width: 210px; max-width: 280px;
	background: var( --tba-card-bg, #fff );
	border: 1px solid var( --tba-border, rgba( 0, 0, 0, 0.1 ) );
	border-radius: 10px; box-shadow: 0 8px 28px rgba( 0, 0, 0, 0.16 );
	padding: 6px; opacity: 0; visibility: hidden; transform: translateY( -4px );
	transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s;
}
.tba-cmp-more:hover .tba-cmp-panel,
.tba-cmp-more:focus-within .tba-cmp-panel { opacity: 1; visibility: visible; transform: translateY( 0 ); }
.tba-cmp-row {
	display: flex; align-items: center; justify-content: space-between; gap: 10px;
	padding: 7px 9px; border-radius: 7px; text-decoration: none;
	color: inherit; font-size: 13px;
}
.tba-cmp-row:hover { background: var( --tba-row-hover, rgba( 0, 0, 0, 0.05 ) ); }
.tba-cmp-row.is-best { background: rgba( 16, 185, 129, 0.08 ); }
.tba-cmp-shop { font-weight: 600; }
.tba-cmp-best {
	display: inline-block; margin-left: 4px; padding: 1px 6px;
	font-size: 10px; font-weight: 700; border-radius: 999px;
	background: #10b981; color: #fff; vertical-align: middle;
}
.tba-cmp-price { font-weight: 700; white-space: nowrap; }
@media ( max-width: 560px ) {
	.tba-cmp-panel { right: 0; left: auto; }
}

/* Stil-Presets */
.tba-style--minimal {
	background: transparent;
	-webkit-backdrop-filter: none;
	backdrop-filter: none;
	box-shadow: none;
}
.tba-style--bordered { border-left: 4px solid var(--tba-accent); }

/* Verlaufskante — Akzent-Gradient als Rahmen */
.tba-style--gradient {
	border: 0;
	background-image: linear-gradient(var(--tba-card-bg), var(--tba-card-bg)), linear-gradient(120deg, var(--tba-accent), var(--tba-accent-2));
	background-origin: border-box;
	background-clip: padding-box, border-box;
	box-shadow: var(--tba-card-shadow);
	padding: calc(24px - 2px);
	border: 2px solid transparent;
}

/* Spotlight — Akzent-Ring + stärkerer Glow */
.tba-style--spotlight { box-shadow: 0 0 0 1px var(--tba-accent), 0 12px 40px rgba(0, 0, 0, 0.28); }
@supports (color: color-mix(in srgb, red, blue)) {
	.tba-style--spotlight { box-shadow: 0 0 0 1px var(--tba-accent), 0 14px 44px color-mix(in srgb, var(--tba-accent) 22%, transparent); }
}

.tba-box:hover {
	box-shadow: 0 15px 40px rgba(31, 40, 51, 0.16);
}
[data-theme='dark'] .tba-box:hover {
	box-shadow: 0 16px 44px rgba(0, 0, 0, 0.5);
}

.tba-box-1 { grid-area: image; }
.tba-box-2 { grid-area: content; }
.tba-box-3 { grid-area: buttons; align-self: end; }
.tba-box-4 { grid-area: foot; }

.tba-image { text-align: center; }
.tba-image img {
	max-width: 100%;
	max-height: 240px;
	width: auto;
	height: auto;
	object-fit: contain;
	display: inline-block;
	border-radius: var(--tba-radius-sm);
}

.tba-title {
	display: block;
	font-size: var(--tba-title-size, 20px);
	font-weight: 700;
	line-height: 1.22;
	color: var(--tba-ink) !important;
	text-decoration: none;
	margin: 0 0 6px;
}
.tba-title:hover { color: var(--tba-accent) !important; }

.tba-subtitle { color: var(--tba-ink-soft); font-size: 14px; margin-bottom: 8px; }
.tba-meta { margin: 4px 0 10px; }
.tba-description { font-size: 15px; line-height: 1.55; margin: 8px 0; color: var(--tba-ink); }

/* Preis-Position "tag": Preis rechtsbündig UNTER dem Titel (volle Titelbreite
   bleibt erhalten, kein Quetschen). */
.tba-price-tag { text-align: right; margin: 6px 0 4px; }
.tba-price-tag .tba-price { margin: 0; }
.tba-box--vertical .tba-price-tag { text-align: center; }
/* Preis-Position "buttons": Preis-Zeile direkt über dem Kaufbereich. */
.tba-price-line { margin: 0 0 10px; }
.tba-price-line .tba-price { margin: 0; }

/* ── Preis-Stil (Skin): wie der nackte Preis aussieht ──────────────────── */
/* chip: dezentes Kästchen → der Preis wirkt gewollt, nicht verloren. */
.tba-pskin--chip .tba-price {
	display: inline-block;
	background: rgba(127, 127, 140, 0.12);
	border: 1px solid rgba(127, 127, 140, 0.18);
	border-radius: var(--tba-radius-sm);
	padding: 5px 12px;
}
/* label: kleines "Preis" vor der Zahl. */
.tba-pskin--label .tba-price::before {
	content: "Preis";
	margin-right: 8px;
	font-size: 13px;
	font-weight: 400;
	color: var(--tba-ink-soft);
}
/* right: Preis rechtsbündig in seiner Zeile/Spalte. */
.tba-pskin--right .tba-price { text-align: right; }
.tba-pskin--right.tba-box--vertical .tba-price { text-align: center; }
/* plain: Default-Look, kein Eingriff. */

/* Long descriptions: clamp to 3 lines with a pure-CSS "show more" toggle. */
.tba-description--clamp {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	margin-bottom: 2px;
}
.tba-desc-state:checked ~ .tba-description--clamp {
	-webkit-line-clamp: unset;
	display: block;
	overflow: visible;
}
.tba-desc-more {
	display: inline-block;
	cursor: pointer;
	font-size: 13px;
	font-weight: 600;
	color: var(--tba-accent, #4338ca);
	margin: 0 0 8px;
	user-select: none;
}
.tba-desc-more:hover { text-decoration: underline; }
.tba-desc-more .tba-desc-close { display: none; }
.tba-desc-state:checked ~ .tba-desc-more .tba-desc-open { display: none; }
.tba-desc-state:checked ~ .tba-desc-more .tba-desc-close { display: inline; }

/* ── Badge (Pill, Akzent) ────────────────────────────────────────────── */
.tba-badge {
	position: absolute;
	top: -13px;
	left: 18px;
	z-index: 5;
	display: inline-block;
	background: var(--tba-accent);
	color: var(--tba-on-accent);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 1px;
	text-transform: uppercase;
	padding: 7px 14px;
	border-radius: 50px;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}
.tba-badge--inline {
	position: static;
	margin-bottom: 8px;
	box-shadow: none;
}

/* ── Preis ───────────────────────────────────────────────────────────── */
.tba-price { display: block; margin: 6px 0; font-size: 15px; }
.tba-price-old {
	color: var(--tba-ink-soft);
	text-decoration: line-through;
	font-weight: 400;
	margin-right: 6px;
	font-size: 14px;
}
.tba-price-current { font-size: 22px; font-weight: 800; color: var(--tba-ink); }
.tba-prime {
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	color: #00a8e1;
	border: 1px solid #00a8e1;
	border-radius: 3px;
	padding: 0 5px;
	vertical-align: middle;
}

/* ── Sterne (rein CSS, keine externen Requests) ──────────────────────── */
.tba-stars {
	--tba-rating: 0;
	--tba-percent: calc(var(--tba-rating) / 5 * 100%);
	display: inline-block;
	font-size: 18px;
	line-height: 1;
	letter-spacing: 2px;
	font-family: Arial, sans-serif;
	vertical-align: middle;
}
.tba-stars::before {
	content: "\2605\2605\2605\2605\2605";
	background: linear-gradient(90deg, var(--tba-star-fill, #ffb800) var(--tba-percent), var(--tba-star-empty, rgba(140, 140, 160, 0.45)) var(--tba-percent));
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}
.tba-reviews { font-size: 13px; color: var(--tba-ink-soft); margin-left: 8px; vertical-align: middle; }
/* Sterne-Größe + Design (Einstellungen) */
.tba-stars--small { font-size: 13px; }
.tba-stars--medium { font-size: 18px; }
.tba-stars--large { font-size: 24px; }
.tba-stars--gold { --tba-star-fill: #ffb800; }
.tba-stars--amber { --tba-star-fill: #f5a623; }
.tba-stars--slate { --tba-star-fill: #475569; --tba-star-empty: rgba(100, 116, 139, 0.35); }
/* Button-Toggles + Symbol (Einstellungen) */
.tba-button--square { border-radius: 5px !important; }
.tba-button--flat { box-shadow: none !important; }

/* Secondary review/shop button: outlined, uses the brand colours directly
   (Indigo #4338ca in light, Cyan #66fcf1 in dark) so it is always readable. */
.tba-button.tba-button--review {
	background: #4338ca !important;
	color: #ffffff !important;
	border: 0 !important;
	box-shadow: none !important;
	text-transform: none !important;
	font-weight: 600 !important;
	letter-spacing: 0 !important;
	text-shadow: none !important;
	margin-top: 8px;
	opacity: 0.92;
}
.tba-button.tba-button--review::before { display: none !important; }
.tba-button.tba-button--review:hover { background: #3a30b8 !important; opacity: 1; }
.tba-button.tba-button--review .tba-button-label,
.tba-button.tba-button--review .tba-review-icon {
	color: #ffffff !important;
	-webkit-text-fill-color: #ffffff !important;
	text-shadow: none !important;
}
.tba-button.tba-button--review .tba-review-icon { margin-right: 7px; }

/* Foxiz dark mode (html[data-theme="dark"]): brand cyan with dark text. */
[data-theme="dark"] .tba-button.tba-button--review {
	background: #66fcf1 !important;
	opacity: 1;
}
[data-theme="dark"] .tba-button.tba-button--review:hover { background: #4ee9dd !important; }

/* "Wo kaufen?" offer list: compact shop · price · button rows. Used when a
   product has additional offers (more than one network/shop) — scales cleanly
   to 3+ offers without stacking giant buttons. */
.tba-offers { display: flex; flex-direction: column; gap: 8px; width: 100%; }
.tba-offers-head { font-weight: 700; font-size: 14px; margin-bottom: 2px; }
.tba-offers-count { font-weight: 500; font-size: 12px; color: #6b7280; }
.tba-offer-row {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 8px 12px;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	background: #fff;
}
.tba-offer-row.is-best { border-color: #16a34a; box-shadow: 0 0 0 1px #16a34a inset; }
.tba-offer-shop { font-weight: 600; font-size: 14px; display: flex; align-items: center; gap: 6px; min-width: 0; }
.tba-offer-best {
	font-size: 11px; font-weight: 700; color: #fff; background: #16a34a;
	padding: 1px 7px; border-radius: 999px; white-space: nowrap;
}
.tba-offer-price { margin-left: auto; font-weight: 700; font-size: 15px; white-space: nowrap; }
.tba-offer-row .tba-button.tba-offer-btn {
	margin: 0; padding: 7px 16px; font-size: 13px; min-width: 0; width: auto; white-space: nowrap; flex: 0 0 auto;
}
@media (max-width: 480px) {
	.tba-offer-row { flex-wrap: wrap; }
	.tba-offer-price { margin-left: 0; }
	.tba-offer-row .tba-button.tba-offer-btn { width: 100%; margin-left: auto; }
}
[data-theme="dark"] .tba-offer-row { background: #11141d; border-color: #2a2f3a; }
[data-theme="dark"] .tba-offers-count { color: #9aa3b2; }
[data-theme="dark"] .tba-offer-row.is-best { border-color: #34d399; box-shadow: 0 0 0 1px #34d399 inset; }
[data-theme="dark"] .tba-button.tba-button--review .tba-button-label,
[data-theme="dark"] .tba-button.tba-button--review .tba-review-icon {
	color: #0b1020 !important;
	-webkit-text-fill-color: #0b1020 !important;
}

/* Price freshness stamp (Amazon-ToS friendly). */
.tba-price-stamp { font-size: 11px; opacity: 0.6; margin-top: 3px; line-height: 1.3; }
.tba-button .tba-btn-symbol { margin-right: 8px; vertical-align: middle; flex: 0 0 auto; }

/* ── Pro / Contra ────────────────────────────────────────────────────── */
.tba-fields { list-style: none; margin: 10px 0; padding: 0; font-size: 14px; }
.tba-fields li {
	position: relative;
	padding-left: 26px;
	margin: 5px 0;
	line-height: 1.45;
	color: var(--tba-ink);
}
.tba-fields li::before {
	position: absolute;
	left: 0;
	top: 0;
	font-weight: 800;
}
.tba-fields--pros li::before { content: "\2713"; color: var(--tba-pros); }
.tba-fields--cons li::before { content: "\2715"; color: var(--tba-cons); }

/* ── Specs (Box: kompakte Liste) ─────────────────────────────────────── */
.tba-specs { list-style: none; margin: 10px 0; padding: 0; font-size: 13.5px; }
.tba-specs li {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	padding: 5px 0;
	border-bottom: 1px solid var(--tba-card-brd);
}
.tba-specs li:last-child { border-bottom: none; }
.tba-spec-label { color: var(--tba-ink-soft); }
.tba-spec-value { font-weight: 600; text-align: right; }

/* ── Buy-Button (Pill, Akzent-Fill, Glow, Shimmer) ───────────────────── */
.tba-button {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	font-family: var(--tba-font);
	font-size: 13.5px;
	font-weight: 700;
	letter-spacing: 0.3px;
	text-transform: uppercase;
	text-align: center;
	text-decoration: none;
	padding: 10px 20px;
	border: none;
	border-radius: 12px;
	background: var(--tba-accent);
	color: var(--tba-on-accent) !important;
	cursor: pointer;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.14);
	transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}
/* Farbiger Glow, wo color-mix unterstützt wird (moderne Browser). */
@supports (color: color-mix(in srgb, red, blue)) {
	.tba-button { box-shadow: 0 4px 14px color-mix(in srgb, var(--tba-accent) 28%, transparent); }
}
.tba-button::before {
	content: "";
	position: absolute;
	top: 0; left: -120%;
	width: 100%; height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
	transition: left .55s ease;
}
.tba-button:hover {
	transform: translateY(-2px);
	color: var(--tba-on-accent) !important;
	filter: brightness(1.04);
}
.tba-button:hover::before { left: 120%; }
[data-theme='dark'] .tba-button { box-shadow: 0 0 0 1px rgba(255,255,255,0.06), 0 4px 14px rgba(0,0,0,0.3); }
@supports (color: color-mix(in srgb, red, blue)) {
	[data-theme='dark'] .tba-button:hover { box-shadow: 0 0 24px color-mix(in srgb, var(--tba-accent) 50%, transparent); }
}
.tba-button--buy { width: 100%; max-width: 300px; }
/* In der Box umschließt der Button seinen Text (keine feste Breite) */
.tba-box .tba-button--buy { width: auto; max-width: 100%; }

/* ── Disclosure ──────────────────────────────────────────────────────── */
.tba-disclosure {
	margin-top: 16px;
	padding-top: 12px;
	border-top: 1px solid var(--tba-card-brd);
	font-size: 12px;
	font-style: italic;
	color: var(--tba-ink-soft);
	line-height: 1.45;
}
.tba-date { white-space: nowrap; }

/* ── Inline-Textlink ─────────────────────────────────────────────────── */
.tba-textlink {
	color: var(--tba-accent);
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 2px;
	text-decoration-thickness: 1.5px;
}
[data-theme='dark'] .tba-textlink { color: var(--tba-accent); }

/* ── Vergleichstabelle (Glas, wie globale techboys-Tabelle) ──────────── */
.tba-comparison {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	overflow: hidden;
	border-radius: var(--tba-radius);
	background: var(--tba-card-bg);
	-webkit-backdrop-filter: var(--tba-blur);
	backdrop-filter: var(--tba-blur);
	border: 1px solid var(--tba-card-brd);
	box-shadow: var(--tba-card-shadow);
}
.tba-comparison th,
.tba-comparison td {
	padding: 13px 16px;
	text-align: center;
	vertical-align: middle;
	border-bottom: 1px solid var(--tba-card-brd);
}
.tba-comparison th {
	text-align: left;
	white-space: nowrap;
	width: 140px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--tba-accent);
	background: linear-gradient(135deg, rgba(67, 56, 202, 0.10) 0%, rgba(67, 56, 202, 0.03) 100%);
}
[data-theme='dark'] .tba-comparison th {
	background: linear-gradient(135deg, rgba(102, 252, 241, 0.14) 0%, rgba(102, 252, 241, 0.05) 100%);
}
.tba-comparison tr:last-child td,
.tba-comparison tr:last-child th { border-bottom: none; }
.tba-comparison .tba-title { font-size: 15px; }
.tba-comparison img { max-height: 92px; width: auto; border-radius: 8px; }
.tba-comparison .tba-fields { text-align: left; display: inline-block; }
.tba-comparison .tba-button { width: auto; padding: 10px 18px; font-size: 13px; }
.tba-comparison .tba-price-current { font-size: 18px; }

/* ── Grid / Bestseller ───────────────────────────────────────────────── */
.tba-grid { display: grid; gap: 22px; }
.tba-grid--col-1 { grid-template-columns: 1fr; }
.tba-grid--col-2 { grid-template-columns: repeat(2, 1fr); }
.tba-grid--col-3 { grid-template-columns: repeat(3, 1fr); }
.tba-grid--col-4 { grid-template-columns: repeat(4, 1fr); }
.tba-grid--col-5 { grid-template-columns: repeat(5, 1fr); }

.tba-grid__item { position: relative; }
.tba-grid__item .tba-box {
	display: block;
	height: 100%;
	text-align: center;
	padding: 22px 18px;
}
.tba-display--compact .tba-image img { max-height: 160px; }
.tba-display--compact .tba-title { font-size: 16px; }
.tba-display--compact .tba-box-3 { margin-top: 12px; }
.tba-grid__item .tba-button--buy { max-width: 100%; }

.tba-rank {
	position: absolute;
	top: -12px;
	right: 16px;
	z-index: 6;
	width: 32px;
	height: 32px;
	line-height: 32px;
	text-align: center;
	border-radius: 50%;
	background: var(--tba-accent);
	color: var(--tba-on-accent);
	font-size: 13px;
	font-weight: 800;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
}

/* ── Responsive ──────────────────────────────────────────────────────── */
@media (max-width: 680px) {
	.tba-box--horizontal {
		grid-template-columns: 1fr;
		grid-template-areas: "image" "content" "buttons" "foot";
		text-align: center;
	}
	.tba-box--horizontal .tba-fields,
	.tba-box--horizontal .tba-specs { text-align: left; }
	.tba-box--horizontal .tba-button--buy { max-width: 100%; }
}

@media (max-width: 760px) {
	.tba-container--wide:has(.tba-comparison) {
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}
	.tba-comparison { min-width: 560px; }
	.tba-comparison th { position: sticky; left: 0; z-index: 2; }
}

@media (max-width: 1024px) {
	.tba-grid--col-3,
	.tba-grid--col-4,
	.tba-grid--col-5 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
	.tba-grid--col-2,
	.tba-grid--col-3,
	.tba-grid--col-4,
	.tba-grid--col-5 { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
	.tba-box, .tba-button, .tba-button::before { transition: none; }
	.tba-button:hover { transform: none; }
}

/* ============================================================
   Vergleichstabelle (TBA_Tables / [tba_table id="..."])
   ============================================================ */
.tba-ctable{ margin:1.5em 0; overflow-x:auto; }
.tba-comparison{
	width:100%; border-collapse:collapse; font-size:.95rem;
	background:var(--tba-card-bg,rgba(255,255,255,.6));
	border-radius:14px; overflow:hidden;
}
.tba-comparison th, .tba-comparison td{
	padding:12px 14px; text-align:center; vertical-align:middle;
	border-bottom:1px solid var(--tba-border,rgba(0,0,0,.08));
}
.tba-comparison thead th{
	font-weight:700; font-size:.8rem; text-transform:uppercase; letter-spacing:.03em;
	background:var(--tba-head-bg,rgba(0,0,0,.04));
}
.tba-comparison tbody tr:last-child td{ border-bottom:0; }
.tba-comparison .tba-row-label{
	text-align:left; font-weight:700; white-space:nowrap;
	background:var(--tba-head-bg,rgba(0,0,0,.04)); position:sticky; left:0; z-index:2;
}
.tba-comparison .tba-ctable-title{ font-weight:600; font-size:1rem; }
.tba-ctable-img{ max-width:96px; max-height:96px; width:auto; height:auto; object-fit:contain; }
.tba-comparison .tba-price{ font-weight:700; white-space:nowrap; }
.tba-comparison .tba-price-old{ text-decoration:line-through; opacity:.6; white-space:nowrap; }
.tba-comparison .tba-yes{ color:#1a9f54; font-weight:700; font-size:1.15rem; }
.tba-comparison .tba-no{ color:#d4324b; font-weight:700; font-size:1.15rem; }
.tba-comparison .tba-cf-list{ margin:0; padding-left:1.1em; text-align:left; font-size:.88rem; }
.tba-comparison .tba-button{ white-space:nowrap; padding:8px 16px; font-size:.85rem; }

[data-theme='dark'] .tba-comparison{ background:var(--tba-card-bg,rgba(20,24,34,.6)); }
[data-theme='dark'] .tba-comparison th,
[data-theme='dark'] .tba-comparison td{ border-color:rgba(255,255,255,.1); }
[data-theme='dark'] .tba-comparison thead th{ background:rgba(255,255,255,.05); }

/* ---- Amazon-Button: Icon als weißes Chip-Badge + optionaler AAWP-Gelb-Stil ---- */
.tba-button{ display:inline-flex; align-items:center; justify-content:center; gap:0; }
.tba-button .tba-button-label{ vertical-align:middle; }
.tba-amz-badge{
	display:inline-flex; align-items:center; justify-content:center;
	background:transparent; border-radius:0; padding:0; margin-right:9px;
	box-shadow:none; flex:0 0 auto;
}
.tba-amz-badge .tba-amz-icon{ display:block; }
.tba-button--amazon{
	background:linear-gradient(180deg,#ffd814,#ffc107) !important;
	color:#0f1111 !important; border:1px solid #fcd200 !important;
	box-shadow:0 2px 6px rgba(255,193,7,.35);
}
.tba-button--amazon .tba-button-label{ color:#0f1111 !important; }
.tba-button--amazon:hover{ background:linear-gradient(180deg,#ffe34d,#ffcd2e) !important; color:#0f1111 !important; }
[data-theme='dark'] .tba-button--amazon{ color:#0f1111 !important; box-shadow:0 2px 10px rgba(255,193,7,.25); }

/* ---- Prime-Logo (✓prime) + Ersparnis-Badge ---- */
.tba-prime{ display:inline-flex; align-items:baseline; gap:1px; font-weight:800; line-height:1; border:0; padding:0; background:none; font-size:inherit; }
.tba-prime-check{ color:#f90; font-weight:900; font-size:1.05em; }
.tba-prime-word{ color:#00a8e1; font-style:normal; letter-spacing:-.02em; }
.tba-save{
	display:inline-block; background:#1a8b3a; color:#fff;
	font-weight:700; font-size:.82em; line-height:1.5;
	padding:1px 8px; border-radius:6px; vertical-align:middle;
}
[data-theme='dark'] .tba-prime-word{ color:#3ec8f5; }

/* ===== smart-home-fox-inspirierte Module (Glass, an --tba-* gekoppelt) ===== */

/* Callout / Hinweis-Box  [tba_hinweis] */
.tba-callout{display:flex;gap:.9rem;align-items:center;padding:1.15rem 1.2rem;margin:1.5rem 0;
	background:var(--tba-card-bg);border:1px solid var(--tba-card-brd);border-left:4px solid var(--tba-accent);
	border-radius:var(--tba-radius);-webkit-backdrop-filter:var(--tba-blur);backdrop-filter:var(--tba-blur);
	color:var(--tba-ink);font-family:var(--tba-font)}
.tba-callout-label{flex-shrink:0;font-size:.64rem;font-weight:800;letter-spacing:1px;text-transform:uppercase;
	padding:.32rem .62rem;border-radius:7px;background:color-mix(in srgb,var(--tba-accent) 14%,transparent);
	color:var(--tba-accent);white-space:nowrap}
.tba-callout-body{font-size:.95rem;line-height:1.55;color:var(--tba-ink)}
.tba-callout-body>:last-child{margin-bottom:0}
.tba-callout--tip{border-left-color:var(--tba-pros)}
.tba-callout--tip .tba-callout-label{background:color-mix(in srgb,var(--tba-pros) 16%,transparent);color:var(--tba-pros)}
.tba-callout--info{border-left-color:var(--tba-accent)}
.tba-callout--measure{border-left-color:#0d8f8a}
.tba-callout--measure .tba-callout-label{background:rgba(13,143,138,.14);color:#0d8f8a}
.tba-callout--warn{border-left-color:#e2a13b}
.tba-callout--warn .tba-callout-label{background:rgba(226,161,59,.16);color:#b9791a}
[data-theme='dark'] .tba-callout--warn .tba-callout-label{color:#e2a13b}

/* Pro/Contra-Karten  [tba_procon] */
.tba-procon{display:grid;grid-template-columns:1fr 1fr;gap:1.2rem;margin:1.8rem 0;font-family:var(--tba-font)}
.tba-pc-card{padding:1.3rem 1.4rem;background:var(--tba-card-bg);border:1px solid var(--tba-card-brd);
	border-top:1px solid var(--tba-card-top);border-radius:var(--tba-radius);box-shadow:var(--tba-card-shadow);
	-webkit-backdrop-filter:var(--tba-blur);backdrop-filter:var(--tba-blur);color:var(--tba-ink)}
.tba-pc-card h4{margin:0 0 .8rem;font-size:1.05rem;font-weight:800;display:flex;align-items:center;gap:.45rem}
.tba-pc-pro h4{color:var(--tba-pros)}
.tba-pc-con h4{color:var(--tba-cons)}
.tba-pc-card ul{list-style:none;margin:0;padding:0}
.tba-pc-card li{font-size:.93rem;line-height:1.5;padding:.42rem 0 .42rem 1.7rem;position:relative;
	color:var(--tba-ink);border-top:1px solid var(--tba-card-brd)}
.tba-pc-card li:first-child{border-top:none}
.tba-pc-pro li::before{content:"\2713";position:absolute;left:0;top:.42rem;color:var(--tba-pros);font-weight:800}
.tba-pc-con li::before{content:"\2715";position:absolute;left:0;top:.42rem;color:var(--tba-cons);font-weight:800}
@media(max-width:680px){.tba-procon{grid-template-columns:1fr}}

/* ── Versus-Box: zwei Produkte Kopf an Kopf ──────────────────────────── */
.tba-versus {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	background: var(--tba-card-bg);
	border: 1px solid var(--tba-card-brd);
	border-radius: var(--tba-radius);
	-webkit-backdrop-filter: var(--tba-blur);
	backdrop-filter: var(--tba-blur);
	box-shadow: var(--tba-card-shadow);
	padding: 22px 14px;
}
.tba-vs-col {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 8px;
	padding: 10px 14px;
	border-radius: var(--tba-radius-sm);
}
.tba-vs-winner {
	background: color-mix(in srgb, var(--tba-accent) 7%, transparent);
	box-shadow: inset 0 0 0 1.5px color-mix(in srgb, var(--tba-accent) 35%, transparent);
}
.tba-vs-ribbon {
	display: inline-block;
	background: linear-gradient(135deg, var(--tba-accent), var(--tba-accent-2));
	color: var(--tba-on-accent);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.3px;
	padding: 3px 14px;
	border-radius: 999px;
	margin-bottom: 2px;
}
.tba-vs-ribbon--ghost { background: transparent; box-shadow: none; }
.tba-vs-img img {
	max-height: 140px;
	width: auto;
	max-width: 100%;
	object-fit: contain;
	border-radius: 10px;
}
.tba-vs-title {
	font-weight: 700;
	font-size: 15.5px;
	line-height: 1.35;
	color: var(--tba-ink) !important;
	text-decoration: none;
}
.tba-vs-title:hover { color: var(--tba-accent) !important; }
.tba-vs-price { font-size: 20px; font-weight: 800; color: var(--tba-ink); }
.tba-vs-col .tba-fields { text-align: left; width: 100%; margin: 2px 0; }
.tba-vs-action { margin-top: auto; padding-top: 6px; }
.tba-vs-divider {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 4px;
}
.tba-vs-divider::before {
	content: "";
	position: absolute;
	top: 8px;
	bottom: 8px;
	left: 50%;
	width: 1px;
	background: var(--tba-card-brd);
}
.tba-vs-badge {
	position: relative;
	z-index: 1;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--tba-accent), var(--tba-accent-2));
	color: var(--tba-on-accent);
	font-weight: 900;
	font-size: 14px;
	letter-spacing: 0.5px;
	box-shadow: 0 4px 14px color-mix(in srgb, var(--tba-accent) 35%, transparent);
}
@media (max-width: 640px) {
	.tba-versus { grid-template-columns: 1fr; padding: 16px 12px; }
	.tba-vs-divider { padding: 10px 0; }
	.tba-vs-divider::before { top: 50%; bottom: auto; left: 8%; right: 8%; width: auto; height: 1px; transform: translateY(-50%); }
	.tba-vs-ribbon--ghost { display: none; }
}

/* ── Carousel: wischbarer Produkt-Slider ─────────────────────────────── */
.tba-carousel { position: relative; }
.tba-car-track {
	display: flex;
	gap: 14px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	padding: 6px 2px 14px;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: thin;
}
.tba-car-item { flex: 0 0 min(260px, 78%); scroll-snap-align: start; display: flex; }
.tba-car-card { display: flex; flex-direction: column; gap: 8px; text-align: center; width: 100%; padding: 18px; }
.tba-car-card .tba-image img { max-height: 140px; }
.tba-car-card .tba-title { font-size: 15px; line-height: 1.3; }
.tba-car-action { margin-top: auto; padding-top: 4px; }
.tba-car-nav {
	position: absolute;
	top: 42%;
	z-index: 5;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	border: 1px solid var(--tba-card-brd);
	background: var(--tba-card-bg);
	-webkit-backdrop-filter: var(--tba-blur);
	backdrop-filter: var(--tba-blur);
	color: var(--tba-ink);
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
	box-shadow: var(--tba-card-shadow);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 0 3px;
}
.tba-car-prev { left: -8px; }
.tba-car-next { right: -8px; }
.tba-car-nav:disabled { opacity: 0.25; cursor: default; }

/* Theme-Bullets hart abschalten — Foxiz setzt list-style direkt auf li,
   sonst erscheinen Browser-Punkt UND unser ✓/✗ doppelt. */
.tba-fields, .tba-fields li, .tba-specs, .tba-specs li, .tba-pc-card ul, .tba-pc-card li {
	list-style: none !important;
}
.tba-fields li::marker, .tba-specs li::marker, .tba-pc-card li::marker { content: "" !important; }

/* Vor-/Nachteile: eingeklappt mit Toggle + Überschriften. */
.tba-pcl { display: none; }
.tba-pcl-state:checked ~ .tba-pcl { display: block; }
.tba-pcl-toggle {
	display: inline-block; cursor: pointer; font-size: 13px; font-weight: 600;
	color: var(--tba-accent, #4338ca); margin: 2px 0 8px;
}
.tba-pcl-toggle:hover { text-decoration: underline; }
.tba-pcl-toggle .tba-pcl-close { display: none; }
.tba-pcl-state:checked ~ .tba-pcl-toggle .tba-pcl-open { display: none; }
.tba-pcl-state:checked ~ .tba-pcl-toggle .tba-pcl-close { display: inline; }
.tba-pcl-h {
	display: block; margin: 10px 0 2px; font-size: .68rem; font-weight: 800;
	letter-spacing: .09em; text-transform: uppercase;
}
.tba-pcl-h:first-child { margin-top: 4px; }
.tba-pcl-h--pros { color: var(--tba-pros); }
.tba-pcl-h--cons { color: var(--tba-cons); }
.tba-pcl .tba-fields { margin-top: 4px; }
/* Coupon: big discounted price + "−%" pill, code below. Minimal, high-impact. */
.tba-coupons { display: flex; flex-direction: column; gap: 8px; margin-top: 12px; }
.tba-coupon {
	display: flex; flex-direction: column; gap: 7px;
	padding: 12px 14px; width: 100%;
	border: 1px solid rgba(22, 163, 74, 0.20); border-radius: 12px;
	background: rgba(22, 163, 74, 0.07); color: var(--tba-ink);
}
.tba-coupon-top { display: flex; align-items: center; gap: 10px; }
.tba-coupon-price { font-weight: 800; font-size: 23px; line-height: 1; color: #15803d; }
.tba-coupon-pct {
	font-weight: 800; font-size: 12px; color: #fff; background: #16a34a;
	border-radius: 999px; padding: 3px 9px; line-height: 1;
}
.tba-coupon-deal { font-weight: 700; font-size: 15px; }
.tba-coupon-bot { display: flex; align-items: center; gap: 9px; flex-wrap: wrap; font-size: 13px; }
.tba-coupon-codelabel { opacity: .55; font-size: 12px; }
.tba-coupon-bot code {
	font-weight: 800; font-size: 15px; letter-spacing: .6px;
	background: rgba(0, 0, 0, 0.05); border: 1px dashed rgba(0, 0, 0, 0.22);
	border-radius: 6px; padding: 3px 12px; color: var(--tba-ink);
}
.tba-coupon-copy {
	border: 0; background: transparent; cursor: pointer; padding: 2px 4px;
	font-size: 12px; font-weight: 600; color: var(--tba-accent, #4338ca);
}
.tba-coupon-copy:hover { text-decoration: underline; }
.tba-coupon-exp { font-size: 11px; opacity: .55; }
[data-theme="dark"] .tba-coupon { background: rgba(22, 163, 74, 0.12); border-color: rgba(22, 163, 74, 0.30); }
[data-theme="dark"] .tba-coupon-price { color: #35d07a; }
[data-theme="dark"] .tba-coupon-bot code { background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.25); }

/* ── Design-Presets (Box-Stil) ───────────────────────────────────────── */

/* Clean — moderner SaaS-Look: weiß, weicher Schatten, viel Radius, neutral. */
.tba-box.tba-style--clean {
	--tba-radius: 18px;
	background: #ffffff;
	-webkit-backdrop-filter: none; backdrop-filter: none;
	border: 1px solid #eceef3;
	box-shadow: 0 6px 24px rgba(20, 30, 50, 0.07);
}
[data-theme='dark'] .tba-box.tba-style--clean { background: #161c2a; border-color: #262d3d; box-shadow: 0 8px 28px rgba(0, 0, 0, 0.42); }
.tba-style--clean .tba-title { letter-spacing: -0.01em; }
.tba-style--clean .tba-button--buy { border-radius: 12px; }

/* Bold — hoher Kontrast: Akzent-Leiste oben, kräftiger Button, fetter Titel. */
.tba-box.tba-style--bold {
	--tba-radius: 14px;
	border: 0;
	border-top: 5px solid var(--tba-accent);
	box-shadow: 0 12px 32px rgba(20, 30, 50, 0.14);
}
[data-theme='dark'] .tba-box.tba-style--bold { box-shadow: 0 14px 38px rgba(0, 0, 0, 0.5); }
.tba-style--bold .tba-title { font-weight: 800; }
.tba-style--bold .tba-button--buy { font-size: 16px; padding: 14px 26px; border-radius: 14px; }
@supports (color: color-mix(in srgb, red, blue)) {
	.tba-style--bold .tba-button--buy { box-shadow: 0 8px 22px color-mix(in srgb, var(--tba-accent) 38%, transparent); }
}

/* Neon — dunkles Glas + Cyan-Glow (techboys-DNA), für dunkle Seiten/Akzente. */
.tba-box.tba-style--neon {
	--tba-accent: #66fcf1; --tba-accent-2: #2dd4bf; --tba-on-accent: #08121a;
	--tba-ink: #eaf6f5; --tba-ink-soft: rgba(234, 246, 245, 0.78);
	background: rgba(13, 18, 28, 0.86);
	-webkit-backdrop-filter: blur(14px) saturate(160%); backdrop-filter: blur(14px) saturate(160%);
	border: 1px solid rgba(102, 252, 241, 0.28);
	box-shadow: 0 0 0 1px rgba(102, 252, 241, 0.14), 0 14px 44px rgba(0, 0, 0, 0.5);
}
.tba-style--neon .tba-title { color: #ffffff !important; }
.tba-style--neon .tba-title:hover { color: #66fcf1 !important; }
.tba-style--neon .tba-button--buy { box-shadow: 0 0 18px rgba(102, 252, 241, 0.45); }

/* Sanft — pastelliger Akzent-Tint, großer Radius, runde Buttons. */
.tba-box.tba-style--soft {
	--tba-radius: 22px;
	background: #f6f7ff;
	-webkit-backdrop-filter: none; backdrop-filter: none;
	border: 1px solid rgba(99, 102, 241, 0.16);
	box-shadow: 0 8px 26px rgba(20, 30, 50, 0.06);
}
@supports (color: color-mix(in srgb, red, blue)) {
	.tba-box.tba-style--soft { background: color-mix(in srgb, var(--tba-accent) 7%, #ffffff); border-color: color-mix(in srgb, var(--tba-accent) 18%, transparent); }
	[data-theme='dark'] .tba-box.tba-style--soft { background: color-mix(in srgb, var(--tba-accent) 14%, #11141d); }
}
[data-theme='dark'] .tba-box.tba-style--soft { background: #161a2a; border-color: rgba(102, 252, 241, 0.18); }
.tba-style--soft .tba-button--buy { border-radius: 999px; }

/* ── Button-Füllungen (global) ───────────────────────────────────────── */
.tba-button--fill-gradient { background: linear-gradient(120deg, var(--tba-accent), var(--tba-accent-2)) !important; }
.tba-button--fill-outline {
	background: transparent !important;
	color: var(--tba-accent) !important;
	border: 2px solid var(--tba-accent) !important;
	box-shadow: none !important;
	text-shadow: none !important;
}
.tba-button--fill-outline::before { display: none !important; }
.tba-button--fill-outline .tba-button-label { color: var(--tba-accent) !important; -webkit-text-fill-color: currentColor !important; text-shadow: none !important; }
.tba-button--fill-outline:hover { background: var(--tba-accent) !important; color: var(--tba-on-accent) !important; }
.tba-button--fill-outline:hover .tba-button-label { color: var(--tba-on-accent) !important; -webkit-text-fill-color: currentColor !important; }

/* ── Badge-Stile ─────────────────────────────────────────────────────── */
/* Klassisch = die schwebende Pille (Default, keine Extra-Regeln nötig). */
/* Ribbon — Banner an der linken Kante mit kleinem Fold. */
.tba-badge--ribbon {
	top: 16px; left: -7px;
	border-radius: 0 4px 4px 0;
	padding: 6px 14px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}
.tba-badge--ribbon::before {
	content: ''; position: absolute; left: 0; top: 100%;
	border: 4px solid transparent;
	border-top-color: rgba(0, 0, 0, 0.45);
	border-left-color: rgba(0, 0, 0, 0.45);
}
/* Ecke — Tab, der sich an die obere linke Box-Ecke schmiegt. */
.tba-badge--corner {
	top: 0; left: 0;
	border-radius: var(--tba-radius) 0 12px 0;
	padding: 7px 15px;
	box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.15);
}

/* ── Zweck-Presets ───────────────────────────────────────────────────── */

/* Conversion — Preis & CTA dominieren, Beschreibung zurückgenommen. */
.tba-box.tba-style--conversion { border: 1px solid var(--tba-card-brd); }
.tba-style--conversion .tba-price-current { font-size: 30px; }
.tba-style--conversion .tba-description { font-size: 13.5px; opacity: .82; }
.tba-style--conversion .tba-button--buy { font-size: 17px; font-weight: 800; padding: 15px 28px; }
.tba-style--conversion.tba-box .tba-button--buy { width: 100%; max-width: 360px; }

/* Native — verschmilzt mit dem Fließtext: keine Karte, dezente Trennlinien. */
.tba-box.tba-style--native {
	background: transparent;
	-webkit-backdrop-filter: none; backdrop-filter: none;
	border: 0;
	border-top: 1px solid var(--tba-card-brd);
	border-bottom: 1px solid var(--tba-card-brd);
	border-radius: 0;
	box-shadow: none;
	padding: 18px 4px;
}
.tba-box.tba-style--native:hover { box-shadow: none; }
.tba-style--native .tba-title { font-size: 19px; }

/* Featured — Hero: großzügig, größeres Bild, größerer Titel. */
.tba-box.tba-style--featured { padding: 30px; }
.tba-style--featured.tba-box--horizontal { grid-template-columns: 280px 1fr; gap: 8px 32px; }
.tba-style--featured .tba-image img { max-height: 300px; }
.tba-style--featured .tba-title { font-size: var(--tba-title-size, 26px); }
.tba-style--featured .tba-description { font-size: 15.5px; }
