/* Красивые кнопки "Смотреть все" */
.view-all-button-container {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 3rem;
	padding-top: 2rem;
}

.view-all-button {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	padding: 1rem 2rem;
	background: #CE9826;
	color: #fff;
	text-decoration: none;
	font-size: 1.125rem;
	font-weight: 600;
	border-radius: 0.75rem;
	transition: all 0.3s ease;
	box-shadow: 0 4px 16px rgba(206, 152, 38, 0.3);
}

.view-all-button:hover {
	background: #a87d1f;
	transform: translateY(-2px);
	box-shadow: 0 6px 24px rgba(206, 152, 38, 0.4);
}

.view-all-button svg {
	transition: transform 0.3s ease;
}

.view-all-button:hover svg {
	transform: translateX(4px);
}

@media (max-width: 640px) {
	.view-all-button {
		font-size: 1rem;
		padding: 0.875rem 1.5rem;
	}
}

