/* ==========================ALL CATEGORIES BUTTON========================== */
.all-categories-button-wrapper {
	text-align: center;
	margin: 40px 0;
}

.all-categories-button {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 12px 24px;
	background-color: #FFD700;
	color: #333;
	font-size: 18px;
	font-weight: bold;
	text-decoration: none;
	border-radius: 30px;
	box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
	transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.all-categories-button:hover {
	background-color: #ffcc00;
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(255, 215, 0, 0.4);
}

.all-categories-button svg {
	width: 24px;
	height: 24px;
	stroke: #333;
}

.all-categories-button span {
	font-size: 18px;
	font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
	.all-categories-button {
		padding: 10px 20px;
		font-size: 16px;
	}
	.all-categories-button svg {
		width: 20px;
		height: 20px;
	}
}

@media (max-width: 480px) {
	.all-categories-button {
		padding: 8px 16px;
		font-size: 14px;
	}
	.all-categories-button svg {
		width: 18px;
		height: 18px;
	}
}