/* ===========================================================
   Final Verdict Box — Elementor Widget Styles
   Desktop-first, collapses to mobile layout at 768px
=========================================================== */

.fv-wrap {
	--fv-radius: 14px;
	box-sizing: border-box;
	max-width: 780px;
	margin: 0 auto;
	padding: 28px;
	background: #fff;
	border: 1px solid #e5e9f0;
	border-radius: var(--fv-radius);
	font-family: inherit;
}

.fv-wrap * {
	box-sizing: border-box;
}

/* ---------- Header ---------- */
.fv-header {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 18px;
}

.fv-badge-number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 26px;
	height: 26px;
	padding: 0 6px;
	background: #1d4ed8;
	color: #fff;
	font-weight: 700;
	font-size: 13px;
	border-radius: 6px;
}

.fv-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: #16a34a;
	font-weight: 700;
	font-size: 13px;
	letter-spacing: 0.03em;
	text-transform: uppercase;
}

/* ---------- Main (trophy + title/rating) ---------- */
.fv-main {
	display: flex;
	align-items: flex-start;
	gap: 22px;
	margin-bottom: 22px;
}

.fv-trophy {
	flex: 0 0 auto;
	width: 76px;
	height: 76px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 38px;
	color: #f5b301;
}

.fv-main-content {
	flex: 1 1 auto;
	min-width: 0;
}

.fv-title {
	margin: 0 0 8px;
	font-size: 28px;
	font-weight: 800;
	color: #0f172a;
	line-height: 1.2;
}

.fv-rating {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 8px;
	flex-wrap: wrap;
}

.fv-stars i {
	color: #f5b301;
	font-size: 18px;
	margin-right: 2px;
}

.fv-rating-value {
	font-size: 22px;
	font-weight: 800;
	color: #0f172a;
}

.fv-rating-max {
	font-size: 15px;
	font-weight: 500;
	color: #94a3b8;
}

.fv-rating-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: #dcfce7;
	color: #16a34a;
	font-weight: 700;
	font-size: 12px;
	letter-spacing: 0.03em;
	padding: 4px 10px;
	border-radius: 20px;
	margin-bottom: 12px;
}

.fv-description {
	margin: 0;
	color: #475569;
	font-size: 15px;
	line-height: 1.6;
}

/* ---------- Best-for / Not-ideal columns ---------- */
.fv-columns {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin-bottom: 22px;
}

.fv-col {
	border: 1px solid #e5e9f0;
	border-radius: 10px;
	padding: 16px 18px;
}

.fv-best {
	background: #f0fdf4;
	border-color: #bbf7d0;
}

.fv-notideal {
	background: #fef2f2;
	border-color: #fecaca;
}

.fv-col-title {
	display: flex;
	align-items: center;
	gap: 8px;
	font-weight: 700;
	font-size: 15px;
	margin-bottom: 12px;
	color: #0f172a;
}

.fv-best .fv-col-title,
.fv-best li i {
	color: #16a34a;
}

.fv-notideal .fv-col-title,
.fv-notideal li i {
	color: #dc2626;
}

.fv-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.fv-list li {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	font-size: 14px;
	color: #334155;
	margin-bottom: 9px;
	line-height: 1.4;
}

.fv-list li:last-child {
	margin-bottom: 0;
}

.fv-list li i {
	margin-top: 2px;
	font-size: 13px;
	flex: 0 0 auto;
}

/* Mobile "+N more" collapsible controls (hidden by default / desktop) */
.fv-list li.fv-hidden-item {
	display: none;
}

.fv-more-toggle {
	display: none;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	font-weight: 700;
	color: inherit;
	cursor: pointer;
	margin-top: 4px;
	background: none;
	border: none;
	padding: 0;
}

.fv-col.fv-truncated .fv-more-toggle {
	display: inline-flex;
}

.fv-col.fv-truncated.fv-expanded .fv-list li.fv-hidden-item {
	display: flex;
}

.fv-col.fv-truncated.fv-expanded .fv-more-toggle .fv-more-label {
	display: none;
}

.fv-more-toggle .fv-less-label {
	display: none;
}

.fv-col.fv-expanded .fv-more-toggle .fv-less-label {
	display: inline;
}

/* ---------- Button ---------- */
.fv-button {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	padding: 15px 20px;
	background: linear-gradient(90deg, #1d4ed8, #1e3a8a);
	color: #fff !important;
	font-weight: 700;
	font-size: 16px;
	text-decoration: none;
	border-radius: 10px;
	margin-bottom: 10px;
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.fv-button:hover {
	opacity: 0.92;
	color: #fff;
	transform: translateY(-1px);
}

.fv-guarantee {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	font-size: 13px;
	color: #64748b;
	margin-bottom: 22px;
}

/* ---------- Feature icons row ---------- */
.fv-features {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
	padding-top: 18px;
	border-top: 1px solid #eef1f6;
	margin-bottom: 18px;
}

.fv-feature {
	display: flex;
	align-items: center;
	gap: 10px;
}

.fv-feature-icon {
	flex: 0 0 auto;
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #1d4ed8;
	font-size: 16px;
}

.fv-feature-text {
	display: flex;
	flex-direction: column;
	line-height: 1.3;
	min-width: 0;
}

.fv-feature-text strong {
	font-size: 12.5px;
	font-weight: 700;
	color: #0f172a;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.fv-feature-text em {
	font-style: normal;
	font-size: 11.5px;
	color: #94a3b8;
}

/* ---------- Footer note ---------- */
.fv-footer-note {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	background: #eef2ff;
	border-radius: 10px;
	padding: 14px 16px;
	font-size: 13px;
	color: #475569;
	line-height: 1.5;
}

.fv-footer-note i {
	color: #1d4ed8;
	margin-top: 2px;
}

/* ===========================================================
   RESPONSIVE — MOBILE (matches the compact mobile reference)
=========================================================== */
@media (max-width: 768px) {

	.fv-wrap {
		padding: 18px;
		max-width: 100%;
	}

	.fv-main {
		flex-direction: column;
		align-items: center;
		text-align: center;
		gap: 10px;
	}

	.fv-trophy {
		width: 60px;
		height: 60px;
		font-size: 30px;
	}

	.fv-title {
		font-size: 21px;
	}

	.fv-rating {
		justify-content: center;
	}

	.fv-description {
		font-size: 13.5px;
	}

	.fv-columns {
		grid-template-columns: 1fr;
		gap: 10px;
	}

	.fv-col {
		padding: 12px 14px;
	}

	/* collapse lists beyond 3 items into a "+N more" toggle on mobile */
	.fv-col.fv-truncated .fv-list li.fv-hidden-item {
		display: none;
	}

	.fv-col.fv-truncated.fv-expanded .fv-list li.fv-hidden-item {
		display: flex;
	}

	.fv-button {
		font-size: 14.5px;
		padding: 13px 16px;
	}

	.fv-features {
		grid-template-columns: repeat(2, 1fr);
		gap: 14px 10px;
	}

	.fv-footer-note {
		font-size: 12.5px;
	}
}

@media (max-width: 400px) {
	.fv-title {
		font-size: 19px;
	}

	.fv-rating-value {
		font-size: 19px;
	}
}
