/* KB External Store Buttons for WooCommerce — frontend button styles.
   Per-marketplace colours and size are injected inline by the plugin. */

.sbbw-buttons {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	margin: 20px 0;
}

.sbbw-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	border: none;
	border-radius: 9px;
	font-weight: 600;
	line-height: 1;
	text-decoration: none;
	cursor: pointer;
	/* Background/text/hover colours are injected inline by the plugin so the
	   label always stays fully legible on hover. */
	transition: background-color 0.15s ease, color 0.15s ease, transform 0.05s ease;
}

.sbbw-btn,
.sbbw-btn:hover,
.sbbw-btn:focus,
.sbbw-btn:visited {
	text-decoration: none;
}

.sbbw-btn:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 2px;
}

.sbbw-btn:active {
	transform: translateY(1px);
}

.sbbw-btn svg {
	width: 1.3em;
	height: 1.3em;
	flex: 0 0 auto;
	border-radius: 4px;
}

.sbbw-btn__label {
	white-space: nowrap;
}

.sbbw-select-note {
	margin: 0;
	font-size: 13px;
	opacity: 0.75;
}

/* Direct "Buy Now" button — leads the buttons row, styled as a .sbbw-btn */
.sbbw-buy-now {
	font-family: inherit;
	border: none;
	cursor: pointer;
	-webkit-appearance: none;
	appearance: none;
}
