.tubuy-products-grid-header {
	display: flex;
	align-items: center;
	justify-content: space-between;

	gap: 16px;

	padding: 6px 18px;

	margin-bottom: 0;

	background-color: #ffffff;

	border: 1px solid #ececec;

	box-shadow:
		0 2px 8px rgba(0,0,0,0.02),
		0 10px 24px rgba(0,0,0,0.03);
}

/* =========================
HEADER CONTENT
========================= */

.tubuy-products-grid-title,
.tubuy-view-all-button {
	position: relative;
}

/* =========================
TITLE
========================= */

.tubuy-products-grid-title {
	display: inline-flex;
	align-items: center;

	padding: 6px 14px;

	border: 1px solid transparent;
	border-radius: 12px;

	font-size: 24px;
	font-weight: 700;

	color: #111111;

	margin: 0;

	line-height: 1.2;
}

/* =========================
BUTTON
========================= */

.tubuy-view-all-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;

	padding: 6px 12px;

	background: #f8f9fb;

	border: 1px solid #ececec;

	border-radius: 10px;

	color: #2563eb;

	font-size: 13px;
	font-weight: 600;

	text-decoration: none;

	line-height: 1.2;

	transition:
		background-color 0.3s ease,
		color 0.3s ease,
		transform 0.3s ease,
		border-color 0.3s ease;
}

.tubuy-view-all-button:hover {
	background: #2563eb;

	border-color: #2563eb;

	color: #ffffff;

	transform: translateY(-2px);
}