/* Northpaw Kit */

/* Botão flutuante de WhatsApp */
.npk-whatsapp-float {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: #25d366;
	color: #fff;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.npk-whatsapp-float:hover,
.npk-whatsapp-float:focus {
	color: #fff;
	transform: scale(1.06);
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

.npk-whatsapp-float:focus-visible {
	outline: 3px solid #128c7e;
	outline-offset: 2px;
}

/* Botão "Comprar pelo WhatsApp" na página do produto */
.npk-wa-product-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	margin-top: 12px;
	padding: 12px 18px;
	border-radius: 6px;
	background: #25d366;
	color: #fff !important;
	font-weight: 600;
	text-decoration: none !important;
	transition: background 0.15s ease;
}

.npk-wa-product-btn:hover,
.npk-wa-product-btn:focus {
	background: #1ebe5b;
}

.npk-wa-product-btn:focus-visible {
	outline: 3px solid #128c7e;
	outline-offset: 2px;
}

/* Tabela de medidas */
.npk-size-chart {
	overflow-x: auto;
}

.npk-size-chart table {
	width: 100%;
	border-collapse: collapse;
	margin: 0 0 1em;
}

.npk-size-chart th,
.npk-size-chart td {
	border: 1px solid #e0e0e0;
	padding: 10px 14px;
	text-align: center;
}

.npk-size-chart thead th,
.npk-size-chart tr:first-child th {
	background: #f5f5f5;
	font-weight: 700;
}

.npk-size-chart tbody tr:nth-child(even) td {
	background: #fafafa;
}

@media (prefers-reduced-motion: reduce) {
	.npk-whatsapp-float,
	.npk-wa-product-btn {
		transition: none;
	}
}

/* Barra de anúncio */
.npk-topbar {
	width: 100%;
	padding: 9px 16px;
	text-align: center;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.02em;
}

.npk-topbar a {
	color: inherit;
	text-decoration: underline;
}

/* Frete grátis progressivo */
.npk-freeship {
	margin: 0 0 20px;
	padding: 14px 16px;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	background: #fafafa;
}

.npk-freeship-msg {
	margin-bottom: 8px;
	font-size: 14px;
}

.npk-freeship-track {
	height: 10px;
	border-radius: 5px;
	background: #e6e6e6;
	overflow: hidden;
}

.npk-freeship-fill {
	height: 100%;
	border-radius: 5px;
	background: #111;
	transition: width 0.3s ease;
}

.npk-freeship-fill.is-complete {
	background: #25d366;
}

/* Newsletter */
.npk-newsletter {
	max-width: 480px;
	margin: 0 auto;
}

.npk-newsletter-title {
	margin: 0 0 10px;
	font-weight: 600;
}

.npk-newsletter-row {
	display: flex;
	gap: 8px;
}

.npk-newsletter-email {
	flex: 1;
	min-width: 0;
	padding: 11px 14px;
	border: 1px solid #ccc;
	border-radius: 6px;
}

.npk-newsletter-hp {
	position: absolute !important;
	left: -9999px !important;
	width: 1px;
	height: 1px;
	opacity: 0;
}

.npk-newsletter-btn {
	padding: 11px 18px;
	border: 0;
	border-radius: 6px;
	background: #111;
	color: #fff;
	font-weight: 600;
	cursor: pointer;
	transition: opacity 0.15s ease;
}

.npk-newsletter-btn:hover {
	opacity: 0.85;
}

.npk-newsletter-btn:disabled {
	opacity: 0.5;
	cursor: wait;
}

.npk-newsletter-feedback {
	margin: 8px 0 0;
	font-size: 14px;
	min-height: 1.2em;
}

.npk-newsletter-feedback.is-error {
	color: #c0392b;
}

.npk-newsletter-feedback.is-success {
	color: #1e7e34;
}

@media (max-width: 480px) {
	.npk-newsletter-row {
		flex-direction: column;
	}
}

/* Detalhes do produto */
.npk-details {
	display: grid;
	grid-template-columns: max-content 1fr;
	gap: 8px 24px;
	margin: 0;
}

.npk-details dt {
	font-weight: 700;
}

.npk-details dd {
	margin: 0;
}

@media (max-width: 480px) {
	.npk-details {
		grid-template-columns: 1fr;
		gap: 2px;
	}

	.npk-details dd {
		margin-bottom: 10px;
	}
}
