/* Checkout Direto e Digital — Frontend (mobile first) */

.cdd-buy-now {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	gap: 0.5em;
	background-color: var(--cdd-buy-bg, #7f54b3) !important;
	color: var(--cdd-buy-text, #ffffff) !important;
	border: 0 !important;
	border-radius: 8px !important;
	font-weight: 700 !important;
	font-size: inherit !important;
	line-height: 1.4 !important;
	padding: 0.62em 1.1em !important;
	min-height: 0 !important;
	height: auto !important;
	cursor: pointer;
	text-decoration: none !important;
	transition: filter 0.15s ease, transform 0.1s ease;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
	-webkit-tap-highlight-color: transparent;
	box-sizing: border-box;
}
.cdd-buy-now:hover,
.cdd-buy-now:focus {
	filter: brightness(1.08);
	color: var(--cdd-buy-text, #ffffff) !important;
}
.cdd-buy-now:active {
	transform: scale(0.98);
}
.cdd-buy-now .cdd-icon {
	flex-shrink: 0;
	width: 1em;
	height: 1em;
}

/* Página do produto: botão em bloco no celular, mesmo tamanho do botão nativo */
.single-product form.cart .cdd-buy-now {
	width: 100%;
	margin-top: 8px;
}

/* Listagens */
.cdd-buy-now-loop {
	margin-top: 6px !important;
	width: 100%;
	font-size: 0.9em !important;
}

/* Telas maiores: botões lado a lado quando couber */
@media (min-width: 768px) {
	.single-product form.cart .cdd-buy-now {
		width: auto;
		margin-top: 0;
		margin-left: 8px;
	}
	.cdd-buy-now-loop {
		width: auto;
	}
}
