/**
 * Product Page - A&A Coffee
 * Version: 1.1.0
 *
 * v1.1.0 CHANGELOG:
 * - Przycisk w osobnym wierszu (.aac-ask-row) po całym formularzu
 * - Smooth scroll przez JS (niezawodny fallback dla motywów blokujących CSS scroll-behavior)
 */

/* ==========================================
   PRZYCISK: ZADAJ PYTANIE O PRODUKT
   ========================================== */

.aac-ask-row {
	margin-top: 16px;
}

.aac-ask-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 24px;
	background: transparent;
	border: 1px solid rgba(234, 88, 12, 0.5);
	border-radius: 8px;
	color: #EA580C !important;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none !important;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
	cursor: pointer;
}

.aac-ask-btn::before {
	content: '';
	display: inline-block;
	width: 16px;
	height: 16px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23EA580C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-size: contain;
	transition: filter 0.2s ease;
}

.aac-ask-btn:hover {
	background: #EA580C;
	color: #fff !important;
	border-color: #EA580C;
}

.aac-ask-btn:hover::before {
	filter: brightness(0) invert(1);
}
