/* ── XT Free Shipping Badge ──────────────────────────── */

.xtfs-badge-wrap {
	display: flex;
	align-items: center;
	gap: 6px;
	flex-wrap: wrap;
}

.xtfs-badge-wrap--loop {
	margin: 0 0 4px;
}

.xtfs-badge-wrap--single {
	margin: 0 0 8px;
}

.xtfs-badge-note {
	font-family: 'Nunito', sans-serif;
	color: #888;
	font-weight: 600;
	font-style: italic;
	white-space: nowrap;
	line-height: 1;
}

.xtfs-badge-wrap--loop .xtfs-badge-note {
	font-size: 9px;
}

.xtfs-badge-wrap--single .xtfs-badge-note {
	font-size: 11px;
}

@media (max-width: 600px) {
	.xtfs-badge-wrap--loop .xtfs-badge-note {
		font-size: 8px;
	}
	.xtfs-badge-wrap--single .xtfs-badge-note {
		font-size: 10px;
	}
}

.xtfs-badge {
	display: inline-block;
	background: linear-gradient(135deg, #1e88e5 0%, #1565c0 100%);
	color: #fff;
	font-family: 'Nunito', sans-serif;
	font-weight: 700;
	text-align: center;
	border-radius: 3px;
	letter-spacing: 0.3px;
	text-transform: uppercase;
	pointer-events: none;
	white-space: nowrap;
	line-height: 1;
}

/* En loops (cards pequeños) */
.xtfs-badge--loop {
	font-size: 9px;
	padding: 3px 7px;
}

/* Up-sells y Cross-sells: cards aún más pequeños, reducir espacio vertical */
.upsells .xtfs-badge-wrap--loop,
.cross_sell .xtfs-badge-wrap--loop {
	margin: 0 0 2px;
	gap: 4px;
}
.upsells .xtfs-badge--loop,
.cross_sell .xtfs-badge--loop {
	font-size: 8px;
	padding: 2px 5px;
}
.upsells .xtfs-badge-wrap--loop .xtfs-badge-note,
.cross_sell .xtfs-badge-wrap--loop .xtfs-badge-note {
	font-size: 8px;
}

/* En página single de producto */
.xtfs-badge--single {
	font-size: 11px;
	padding: 4px 9px;
	box-shadow: 0 2px 5px rgba(25, 118, 210, 0.25);
}

/* Mobile */
@media (max-width: 600px) {
	.xtfs-badge--loop {
		font-size: 8px;
		padding: 2px 6px;
	}
	.xtfs-badge--single {
		font-size: 10px;
		padding: 3px 8px;
	}
}

/* ── Aviso en checkout ────────────────────────────────── */

.xtfs-checkout-notice {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 20px;
	padding: 14px 18px;
	background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
	border: 1px solid #1976d2;
	border-left-width: 4px;
	border-radius: 6px;
	font-family: 'Nunito', sans-serif;
	color: #0d47a1;
	font-size: 14px;
	font-weight: 600;
}

.xtfs-checkout-notice__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	background: #1976d2;
	color: #fff;
	border-radius: 50%;
	font-size: 14px;
	font-weight: 700;
	flex-shrink: 0;
}

.xtfs-checkout-notice__text {
	flex: 1;
	line-height: 1.4;
}
