/* =================================================================
   File:    assets/css/catalogue.css
   Purpose: The "Download catalogue (PDF)" button shown on final
            product sub-category pages — themed to the Liqui store.
   ================================================================= */

.rzcat-bar {
	display: flex;
	justify-content: flex-end;
	margin: 0 0 14px;
}

.rzcat-btn {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	padding: 10px 18px;
	border: 1px solid #10355c;
	border-radius: 10px;
	background: #10355c;
	color: #fff !important;
	font-size: 13.5px;
	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;
}

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

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

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

@media (max-width: 480px) {
	.rzcat-bar { justify-content: stretch; }
	.rzcat-btn { width: 100%; justify-content: center; }
}
