/* ── BB Premium: Call to Action ──────────────────────────────────────────── */

.bbpe-cta {
	padding: 48px 40px;
	border-radius: 12px;
	background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
}

.bbpe-cta__title {
	font-size: 1.75rem;
	font-weight: 700;
	color: #fff;
	margin: 0 0 0.5rem;
	line-height: 1.2;
}

.bbpe-cta__description {
	font-size: 1rem;
	color: rgba(255, 255, 255, 0.85);
	margin: 0;
}

.bbpe-cta__btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background-color: #fff;
	color: #6366f1;
	padding: 0.8rem 1.75rem;
	border-radius: 8px;
	font-weight: 700;
	font-size: 1rem;
	text-decoration: none;
	transition: background-color 0.2s ease, color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
	white-space: nowrap;
}

/* Icon inside button: default 1em (inherits button font-size = ~16px).
   SVGs from Elementor have no intrinsic size – must set width/height explicitly. */
.bbpe-cta__btn i {
	font-size: 1em;
	line-height: 1;
	flex-shrink: 0;
}

.bbpe-cta__btn svg {
	width: 1em;
	height: 1em;
	flex-shrink: 0;
	fill: currentColor;
}

.bbpe-cta__btn:hover,
.bbpe-cta__btn:focus-visible {
	background-color: #f1f5f9;
	color: #4f46e5;
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
	text-decoration: none;
}

/* ── Horizontal ─────────────────────────────────────────────────────────── */
.bbpe-cta--horizontal {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	flex-wrap: wrap;
}

.bbpe-cta--horizontal .bbpe-cta__body { flex: 1; min-width: 0; }
.bbpe-cta--horizontal .bbpe-cta__action { flex-shrink: 0; }

/* ── Vertical ───────────────────────────────────────────────────────────── */
.bbpe-cta--vertical {
	text-align: center;
}

.bbpe-cta--vertical .bbpe-cta__title { margin-bottom: 0.75rem; }
.bbpe-cta--vertical .bbpe-cta__description { margin-bottom: 1.5rem; }

.bbpe-cta--vertical .bbpe-cta__action {
	display: flex;
	justify-content: center;
}

/* ── Boxed ──────────────────────────────────────────────────────────────── */
.bbpe-cta--boxed {
	background: #fff;
	border: 1px solid #e2e8f0;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
	max-width: 560px;
	margin-inline: auto;
}

.bbpe-cta--boxed .bbpe-cta__title { color: #0f172a; }
.bbpe-cta--boxed .bbpe-cta__description { color: #64748b; }

.bbpe-cta--boxed .bbpe-cta__btn {
	background-color: #6366f1;
	color: #fff;
	width: 100%;
	justify-content: center;
}

.bbpe-cta--boxed .bbpe-cta__btn:hover { background-color: #4f46e5; }

.bbpe-cta--boxed .bbpe-cta__inner { text-align: center; }

.bbpe-cta--boxed .bbpe-cta__inner .bbpe-cta__title { margin-bottom: 0.5rem; }
.bbpe-cta--boxed .bbpe-cta__inner .bbpe-cta__description { margin-bottom: 1.5rem; }

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 600px) {
	.bbpe-cta {
		padding: 36px 24px;
	}

	.bbpe-cta--horizontal {
		flex-direction: column;
		align-items: flex-start;
	}
}
