/**
 * Payment Badges Styles
 *
 * @package WoodMart Child
 */

.secure-payments-badge {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-top: 14px;
	padding: 14px 16px 12px;
	border-radius: 10px;
	background: #fff;
	border: 1px solid #e8e8e8;
	text-align: center;
}

.secure-payments-header {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.secure-payments-lock {
	width: 16px;
	height: 16px;
	color: #2e7d32;
	flex-shrink: 0;
}

.secure-payments-title {
	font-size: 13px;
	font-weight: 700;
	color: #333;
	letter-spacing: 0.01em;
}

.secure-payments-icons {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 6px;
}

.sp-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 30px;
	border-radius: 4px;
	overflow: hidden;
}

.sp-icon-svg {
	background: #fff;
	border: 1px solid #bbb;
	padding: 4px 6px;
	box-sizing: border-box;
}

.sp-icon svg {
	width: 100%;
	height: 100%;
}

.sp-icon img {
	width: auto;
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.secure-payments-subtext {
	font-size: 11px;
	color: #888;
	margin-top: 2px;
}
