/* =================================================================
   File:    assets/css/datasheet.css
   Purpose: The "Download datasheet (PDF)" button on product pages,
            themed to match the Liqui storefront (navy + gold).
   ================================================================= */

.rzds-btn {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	margin: 16px 0 6px;
	padding: 11px 20px;
	border: 1px solid #10355c;
	border-radius: 10px;
	background: #10355c;
	color: #fff !important;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.2;
	text-decoration: none !important;
	box-shadow: 0 4px 14px -10px rgba(16, 53, 92, .7);
	transition: background .15s ease, transform .15s ease, box-shadow .15s ease;
}

.rzds-btn:hover,
.rzds-btn:focus {
	background: #0b2942;
	border-color: #0b2942;
	color: #fff !important;
	box-shadow: 0 8px 20px -8px rgba(16, 53, 92, .65);
	transform: translateY(-1px);
}

.rzds-btn:active { transform: translateY(0); }

.rzds-btn__icon { flex: none; }
.rzds-btn__txt  { white-space: nowrap; }
